New folder localStorageVariable for new testcases; added two new tests

This commit is contained in:
hrkrshnn
2020-04-02 16:34:45 +05:30
parent aec0ae8ec1
commit 8e6567e399
28 changed files with 20 additions and 0 deletions
@@ -0,0 +1,20 @@
contract C {
struct S { bool f; }
S s;
function f(bool flag) internal view {
S storage c;
flag ? c = s : c = s;
c;
}
function g(bool flag) internal view {
S storage c;
flag ? c = s : (c = s);
c;
}
function h(bool flag) internal view {
S storage c;
flag ? (c = s).f : (c = s).f;
c;
}
}
// ----