solidity/test/libsolidity/syntaxTests/errors/struct_named_error.sol
2021-03-30 21:15:18 +02:00

7 lines
111 B
Solidity

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