solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/whitespace_in_assignment.sol

11 lines
226 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
assembly {
let x : = mload(0)
}
}
}
// ----
// ParserError: (69-70): Literal, identifier or instruction expected.
// ParserError: (69-70): Expected primary expression.