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.
20 lines
247 B
20 lines
247 B
4 years ago
|
contract C {
|
||
|
struct S {
|
||
|
uint a;
|
||
|
}
|
||
|
|
||
|
function f() public {
|
||
|
uint[] memory x;
|
||
|
x.length;
|
||
|
|
||
|
address(this).balance;
|
||
|
|
||
|
block.coinbase;
|
||
|
|
||
|
msg.sender;
|
||
|
|
||
|
tx.origin;
|
||
|
|
||
|
S({a: 5}).a;
|
||
|
}
|
||
|
}
|