solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_opcode_like.sol

11 lines
209 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
uint mload;
assembly {
let x := mload
}
}
}
// ----
2020-11-05 01:38:57 +00:00
// ParserError 7104: (118-119): Builtin function "mload" must be called.