solidity/test/libsolidity/syntaxTests/inlineAssembly/function_call_not_found.sol
2018-07-25 10:45:31 +01:00

10 lines
137 B
Solidity

contract C {
function f() public pure {
assembly {
k()
}
}
}
// ----
// DeclarationError: (63-64): Function not found.