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-09 23:38:08 +00:00
// ParserError 7104: (104-109): Builtin function "mload" must be called.