aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-06-27 20:00:13 +0800
committerErik Kundt <bitshift@posteo.org>2018-06-29 17:27:01 +0800
commit1346b4407f05335a039c6b71ccceebd7878fd70a (patch)
tree05fcf046c6cdea0fa06ce4aebab6de8c1249206e /test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol
parent12c4eb769762d55a71ba05cf1b74b99797026f51 (diff)
downloaddexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.tar
dexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.tar.gz
dexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.tar.bz2
dexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.tar.lz
dexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.tar.xz
dexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.tar.zst
dexon-solidity-1346b4407f05335a039c6b71ccceebd7878fd70a.zip
Updates syntax tests to new constructor syntax.
Diffstat (limited to 'test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol')
-rw-r--r--test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol b/test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol
index 150ba9ca..cc2839cd 100644
--- a/test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol
+++ b/test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol
@@ -1,7 +1,6 @@
contract test {
struct S { uint x; }
- function test(uint k) public { S[k]; }
+ constructor(uint k) public { S[k]; }
}
// ----
-// Warning: (45-83): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
-// TypeError: (78-79): Integer constant expected.
+// TypeError: (76-77): Integer constant expected.