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

11 lines
190 B
Solidity

contract C {
function f() public pure {
uint mload;
assembly {
mload := 1
}
}
}
// ----
// ParserError 2314: (101-103): Expected '(' but got ':='