solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_opcode_like.sol
Alex Beregszaszi a9be2e4bb8 update tests
2020-12-03 17:15:45 +01:00

11 lines
209 B
Solidity

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