solidity/test/libsolidity/syntaxTests/conversion/convert_to_super_nonempty.sol

8 lines
147 B
Solidity
Raw Normal View History

2020-12-01 09:34:45 +00:00
contract C {
function f() public pure {
super(this).f();
}
}
// ----
// TypeError 1744: (52-63): Cannot convert to the super type.