solidity/test/libsolidity/syntaxTests/viewPureChecker/local_storage_variables.sol
2018-06-06 15:41:41 +01:00

20 lines
322 B
Solidity

contract C {
struct S { uint a; }
S s;
function f() view public {
S storage x = s;
x;
}
function g() view public {
S storage x = s;
x = s;
}
function i() public {
s.a = 2;
}
function h() public {
S storage x = s;
x.a = 2;
}
}