solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/jump_disallowed.sol

10 lines
164 B
Solidity
Raw Normal View History

contract C {
function f() pure public {
assembly {
jump(2)
}
}
}
// ----
// DeclarationError 4619: (75-79): Function not found.