solidity/test/libsolidity/syntaxTests/errors/struct_named_error.sol
2021-04-28 11:12:43 +02:00

7 lines
124 B
Solidity

struct error {uint a;}
contract C {
error x;
}
// ----
// ParserError 2314: (7-12): Expected identifier but got 'error'