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.
54 lines
1016 B
54 lines
1016 B
4 years ago
|
contract I {
|
||
|
constructor() public payable {}
|
||
|
}
|
||
|
|
||
|
contract C {
|
||
|
struct S {
|
||
|
uint a;
|
||
|
uint b;
|
||
|
}
|
||
|
|
||
|
struct T {
|
||
|
S s1;
|
||
|
S s2;
|
||
|
}
|
||
|
|
||
|
function f() public payable {
|
||
|
publicTarget();
|
||
|
|
||
|
this.publicTarget();
|
||
|
this.publicTarget.value(1 ether)();
|
||
|
this.publicTarget.value(1 ether);
|
||
|
this.publicTarget.gas(10000)();
|
||
|
this.publicTarget.gas(10000).value(2 ether)();
|
||
|
this.publicTarget.gas(10000).gas(20000).value(2 ether).gas(0)();
|
||
|
|
||
|
internalTarget(1, 2);
|
||
|
|
||
|
S({a: 5, b: 6});
|
||
|
T({s1: S({a: 1, b: 2}), s2: S({a: 3, b: 4})});
|
||
|
|
||
|
function(uint) external payable ptr;
|
||
|
ptr.value(10 ether)(1);
|
||
|
|
||
|
I(msg.sender);
|
||
|
|
||
|
new I();
|
||
|
(new I).value(1 ether)();
|
||
|
|
||
|
type(I);
|
||
|
|
||
|
abi.encode(1, 2, 3);
|
||
|
abi.decode(msg.data, (uint, uint[], I));
|
||
|
|
||
|
payable(1);
|
||
|
}
|
||
|
|
||
|
function publicTarget() public payable {
|
||
|
|
||
|
}
|
||
|
|
||
|
function internalTarget(uint a, uint b) public {
|
||
|
|
||
|
}
|
||
|
}
|