Adds default visibility specifier to syntax tests.

This commit is contained in:
Erik Kundt
2018-07-04 10:45:59 +02:00
parent 533d5d4b1c
commit 2e0d019ef0
37 changed files with 619 additions and 610 deletions
@@ -1,6 +1,6 @@
contract C {
uint constant LEN = LEN;
function f() {
function f() public {
uint[LEN] a;
}
}