Change test from public to external

This commit is contained in:
Leonardo Alt 2018-07-10 19:08:05 +02:00
parent 0c5e0e0d59
commit a18a475b1a

View File

@ -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)