solidity/test/libsolidity/syntaxTests/functionCalls/this_not_callable.sol
2022-04-01 23:41:18 -05:00

10 lines
204 B
Solidity

contract C {
function f() public returns (uint, uint) {
try this() {
} catch Error(string memory) {
}
}
}
// ----
// TypeError 5704: (72-78='this()'): Type is not callable