aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inlineAssembly/function_call_not_found.sol
blob: 57534bd6a46b7423eb14921b0fdc593506922e01 (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
  function f() public pure {
    assembly {
      k()
    }
  }
}
// ----
// DeclarationError: (63-64): Function not found.