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.
34 lines
386 B
34 lines
386 B
4 years ago
|
contract I {
|
||
|
|
||
|
}
|
||
|
|
||
|
interface F {
|
||
|
|
||
|
}
|
||
|
|
||
|
contract C {
|
||
|
struct S {
|
||
|
uint a;
|
||
|
}
|
||
|
|
||
|
function f() public payable {
|
||
|
uint[] memory x;
|
||
|
x.length;
|
||
|
|
||
|
C c;
|
||
|
c.f.selector;
|
||
|
|
||
|
address(this).balance;
|
||
|
|
||
|
block.coinbase;
|
||
|
|
||
|
msg.sender;
|
||
|
|
||
|
tx.origin;
|
||
|
|
||
|
S({a: 5}).a;
|
||
|
|
||
|
type(I).creationCode;
|
||
|
type(F).interfaceId;
|
||
|
}
|
||
|
}
|