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

8 lines
141 B
Solidity
Raw Normal View History

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