solidity/test/libsolidity/syntaxTests/inlineAssembly/assignment_from_opcode_like.sol

11 lines
193 B
Solidity
Raw Normal View History

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