solidity/test/libsolidity/syntaxTests/conversion/convert_to_super_nonempty.sol
2020-12-01 14:15:50 +01:00

8 lines
147 B
Solidity

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