Files
solidity/test/libsolidity/syntaxTests/conversion/convert_to_super_empty.sol

8 lines
141 B
Solidity

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