solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/leave_items_on_tack.sol
2019-10-25 15:01:25 +02:00

10 lines
254 B
Solidity

contract C {
function f() pure public {
assembly {
mload(0)
}
}
}
// ----
// TypeError: (75-83): Top-level expressions are not supposed to return values (this expression returns 1 value). Use ``pop()`` or assign them.