solidity/test/libsolidity/syntaxTests/super/super_in_function.sol

8 lines
165 B
Solidity
Raw Normal View History

2020-12-07 11:10:35 +00:00
contract C {
}
function f() pure {
super;
}
// ----
// DeclarationError 7576: (39-44): Undeclared identifier. "super" is not (or not yet) visible at this point.