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

7 lines
114 B
Solidity

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