mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
220 B
15 lines
220 B
6 years ago
|
contract Uninitialized{
|
||
|
|
||
|
struct St{
|
||
|
uint a;
|
||
|
}
|
||
|
|
||
|
function func() payable{
|
||
6 years ago
|
St st; // non init, but never read so its fine
|
||
6 years ago
|
St memory st2;
|
||
6 years ago
|
St st_bug;
|
||
|
st_bug.a;
|
||
6 years ago
|
}
|
||
|
|
||
|
}
|