blob: 363d8147b4cdcd672f9e795959f154383098dc4d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
contract C {
function f() {
uint[] storage x;
uint[10] storage y;
}
}
// ----
// DeclarationError: (31-47): Uninitialized storage pointer.
// DeclarationError: (51-69): Uninitialized storage pointer.
|