solidity/test/libsolidity/syntaxTests/structs/struct_var_member.sol

8 lines
101 B
Solidity

contract C {
struct S {
var x;
}
}
// ----
// ParserError: (27-30): Expected explicit type name.