diff options
author | Erik Kundt <bitshift@posteo.org> | 2018-07-18 01:30:15 +0800 |
---|---|---|
committer | Erik Kundt <bitshift@posteo.org> | 2018-07-18 01:30:15 +0800 |
commit | 7d8b39ff4f7eb0da810eadf0de06c1d26460bc9c (patch) | |
tree | f50a4ea0c2687be94197078ecf274c5fe8cea7ee /test/libsolidity/syntaxTests | |
parent | dfd2fee91d2d6158dc11146ddc1773ac5eb12c6a (diff) | |
download | dexon-solidity-7d8b39ff4f7eb0da810eadf0de06c1d26460bc9c.tar.gz dexon-solidity-7d8b39ff4f7eb0da810eadf0de06c1d26460bc9c.tar.zst dexon-solidity-7d8b39ff4f7eb0da810eadf0de06c1d26460bc9c.zip |
Removes obsolete syntax tests.
Diffstat (limited to 'test/libsolidity/syntaxTests')
-rw-r--r-- | test/libsolidity/syntaxTests/constructor/constructor_no_visibility_050.sol | 4 | ||||
-rw-r--r-- | test/libsolidity/syntaxTests/nameAndTypeResolution/567_require_visibility_specifiers_v050.sol | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/test/libsolidity/syntaxTests/constructor/constructor_no_visibility_050.sol b/test/libsolidity/syntaxTests/constructor/constructor_no_visibility_050.sol deleted file mode 100644 index 9f60f0d8..00000000 --- a/test/libsolidity/syntaxTests/constructor/constructor_no_visibility_050.sol +++ /dev/null @@ -1,4 +0,0 @@ -pragma experimental "v0.5.0"; -contract A { constructor() {} } -// ---- -// SyntaxError: (43-59): No visibility specified. Did you intend to add "public"? diff --git a/test/libsolidity/syntaxTests/nameAndTypeResolution/567_require_visibility_specifiers_v050.sol b/test/libsolidity/syntaxTests/nameAndTypeResolution/567_require_visibility_specifiers_v050.sol deleted file mode 100644 index 73a74219..00000000 --- a/test/libsolidity/syntaxTests/nameAndTypeResolution/567_require_visibility_specifiers_v050.sol +++ /dev/null @@ -1,6 +0,0 @@ -pragma experimental "v0.5.0"; -contract C { - function f() pure { } -} -// ---- -// SyntaxError: (47-68): No visibility specified. Did you intend to add "public"? |