diff options
author | Leonardo Alt <leo@ethereum.org> | 2018-07-11 01:08:05 +0800 |
---|---|---|
committer | Leonardo Alt <leo@ethereum.org> | 2018-07-11 01:08:05 +0800 |
commit | a18a475b1a6ba1ebcf235f322dec0e7ff3d3dcb0 (patch) | |
tree | f3a221b47dbc0a8c9b708f76137e7364c42dac0b | |
parent | 0c5e0e0d59dc55fcfe5b95a8c649a7a769ad3400 (diff) | |
download | dexon-solidity-a18a475b1a6ba1ebcf235f322dec0e7ff3d3dcb0.tar.gz dexon-solidity-a18a475b1a6ba1ebcf235f322dec0e7ff3d3dcb0.tar.zst dexon-solidity-a18a475b1a6ba1ebcf235f322dec0e7ff3d3dcb0.zip |
Change test from public to external
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index d1466ea8..29fc808b 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -527,7 +527,7 @@ BOOST_AUTO_TEST_CASE(array_multiple_local_vars) { char const* sourceCode = R"( contract test { - function f(uint256[] seq) public pure returns (uint256) { + function f(uint256[] seq) external pure returns (uint256) { uint i = 0; uint sum = 0; while (i < seq.length) |