solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_opcode_like.sol
2020-12-03 17:15:44 +01:00

11 lines
209 B
Solidity

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