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

8 lines
106 B
Solidity
Raw Normal View History

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