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

11 lines
259 B
Solidity

contract test {
uint x = 1;
function f() public {
assembly {
x := 2
}
}
}
// ----
// TypeError 1408: (89-90='x'): Only local variables are supported. To access storage variables, use the ".slot" and ".offset" suffixes.