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

10 lines
167 B
Solidity
Raw Normal View History

2020-07-30 10:19:08 +00:00
contract C {
function f() pure public {
assembly {
jumpdest()
}
}
}
// ----
// DeclarationError 4619: (75-83): Function not found.