8 lines
140 B
Solidity
8 lines
140 B
Solidity
contract CallSelfWithDust {
|
|
function f() external payable {}
|
|
|
|
function call() public payable {
|
|
this.f{value: 10}();
|
|
}
|
|
}
|