mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
229 B
Solidity
9 lines
229 B
Solidity
contract c {
|
|
uint8 x;
|
|
function f() public {
|
|
assembly { pop(x) }
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 1408: (75-76): Only local variables are supported. To access storage variables, use the ".slot" and ".offset" suffixes.
|