aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/234_non_initialized_references_050.sol
blob: c221b73c082d88ef66444d1cdb14657f6dfe65e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
pragma experimental "v0.5.0";
contract C {
    struct s {
        uint a;
    }
    function f() public {
        s storage x;
    }
}
// ----
// DeclarationError: (114-125): Uninitialized storage pointer.