solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_opcode_like.sol
2020-11-05 10:30:09 +00:00

11 lines
193 B
Solidity

contract C {
function f() public pure {
uint mload;
assembly {
let x := mload
}
}
}
// ----
// ParserError 2314: (118-119): Expected '(' but got '}'