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

11 lines
217 B
Solidity

contract C {
function f() public pure {
uint mload;
assembly {
let x := mload
}
}
}
// ----
// ParserError 7104: (104-109='mload'): Builtin function "mload" must be called.