solidity/test/libsolidity/syntaxTests/inlineAssembly/storage_reference_empty_offset.sol
2022-04-01 23:41:18 -05:00

10 lines
184 B
Solidity

contract C {
function f() public pure {
assembly {
let x := .offset
}
}
}
// ----
// ParserError 1856: (84-85='.'): Literal or identifier expected.