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.
36 lines
436 B
36 lines
436 B
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;
|
|
type(int).min;
|
|
type(int).max;
|
|
}
|
|
} |