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

7 lines
123 B
Solidity

error E();
function f() pure {
revert((E)());
}
// ----
// TypeError 4423: (42-47): Expected error instance or string.