solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/366_invalid_array_as_statement.sol

8 lines
290 B
Solidity

contract test {
struct S { uint x; }
function test(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.