solidity/test/libsolidity/syntaxTests/modifiers/cross_contract_super.sol
2022-04-01 23:41:18 -05:00

10 lines
188 B
Solidity

contract C {
modifier m() { _; }
}
contract D is C {
function f() super.m public {
}
}
// ----
// DeclarationError 7920: (74-81='super.m'): Identifier not found or not unique.