aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/uninitialized_storage_var.sol
blob: f3be9071501eda81660c1e4af5d645f4db05d1ad (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
    function f() public {
        uint[] storage x;
        uint[10] storage y;
    }
}
// ----
// DeclarationError: (38-54): Uninitialized storage pointer.
// DeclarationError: (58-76): Uninitialized storage pointer.