diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-07-10 18:48:09 +0800 |
---|---|---|
committer | Erik Kundt <bitshift@posteo.org> | 2018-07-18 00:03:35 +0800 |
commit | 75bba5c9f02df281c667b77db01594c5c7eb823d (patch) | |
tree | f11e7f2a996874e009b1f34be7e8b77cb50d9be5 /test/libsolidity/syntaxTests/constructor | |
parent | b5ecfbe5bc2afdf8f42ec67715794aefad9dfe0f (diff) | |
download | dexon-solidity-75bba5c9f02df281c667b77db01594c5c7eb823d.tar.gz dexon-solidity-75bba5c9f02df281c667b77db01594c5c7eb823d.tar.zst dexon-solidity-75bba5c9f02df281c667b77db01594c5c7eb823d.zip |
Adjusts tests to expect type errors on default visibility.
Diffstat (limited to 'test/libsolidity/syntaxTests/constructor')
-rw-r--r-- | test/libsolidity/syntaxTests/constructor/constructor_no_visibility.sol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/syntaxTests/constructor/constructor_no_visibility.sol b/test/libsolidity/syntaxTests/constructor/constructor_no_visibility.sol index 88553084..3835560a 100644 --- a/test/libsolidity/syntaxTests/constructor/constructor_no_visibility.sol +++ b/test/libsolidity/syntaxTests/constructor/constructor_no_visibility.sol @@ -1,3 +1,3 @@ contract A { constructor() {} } // ---- -// Warning: (13-29): No visibility specified. Defaulting to "public". +// SyntaxError: (13-29): No visibility specified. |