solidity/test/libsolidity/syntaxTests/errors/struct_named_error.sol
2021-02-11 14:18:04 +01:00

7 lines
111 B
Solidity

// Test that the parser workaround is not breaking.
struct error {uint a;}
contract C {
error x;
}
// ----