aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_contract.sol
blob: a87a3e6658e44c84d85bb352b4f13c730444567a (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
  function f() public pure {
    assembly {
      let x := C
    }
  }
}
// ----
// TypeError: (72-73): Expected a library.