solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/233_non_initialized_references.sol

12 lines
182 B
Solidity
Raw Normal View History

contract C {
struct s {
uint a;
}
function f() public {
s storage x;
x.a = 2;
}
}
// ----
// Warning: (84-95): Uninitialized storage pointer.