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

10 lines
150 B
Solidity

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