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

10 lines
159 B
Solidity
Raw Normal View History

contract C {
function f() pure public {
assembly {
jump(2)
}
}
}
// ----
2019-10-25 13:00:44 +00:00
// DeclarationError: (75-79): Function not found.