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

10 lines
189 B
Solidity

contract C {
function f() pure public {
assembly {
jumpdest()
}
}
}
// ----
// DeclarationError 4619: (75-83='jumpdest'): Function "jumpdest" not found.