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

10 lines
171 B
Solidity

contract C {
function f() public pure {
assembly {
let x := super
}
}
}
// ----
// DeclarationError 8198: (72-77='super'): Identifier "super" not found.