mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
303 B
Solidity
18 lines
303 B
Solidity
|
contract C {
|
||
|
struct S { bool f; }
|
||
|
S s;
|
||
|
function f() internal pure {}
|
||
|
function g() internal view { s; }
|
||
|
function h() internal view {
|
||
|
S storage c;
|
||
|
c = s;
|
||
|
c;
|
||
|
}
|
||
|
function i() internal view {
|
||
|
S storage c;
|
||
|
(c) = s;
|
||
|
c;
|
||
|
}
|
||
|
}
|
||
|
// ----
|