aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_super.sol
blob: bd5562d52e8b61f267a914ba2e8dd66b5ad7962a (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
  function f() public pure {
    assembly {
      let x := super
    }
  }
}
// ----
// DeclarationError: (72-77): Identifier not found.