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

8 lines
161 B
Solidity

contract C {
function f() public pure {
super(this).f();
}
}
// ----
// TypeError 1744: (52-63='super(this)'): Cannot convert to the super type.