mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
892 B
Solidity
27 lines
892 B
Solidity
contract C {
|
|
function f() external payable {}
|
|
function g(address a) external pure {
|
|
a.call.value(42);
|
|
a.call{value: 42};
|
|
a.call.gas(42);
|
|
a.call{gas: 42};
|
|
a.staticcall.gas(42);
|
|
a.staticcall{gas: 42};
|
|
a.delegatecall.gas(42);
|
|
a.delegatecall{gas: 42};
|
|
}
|
|
function h() external view {
|
|
this.f.value(42);
|
|
this.f{value: 42};
|
|
this.f.gas(42);
|
|
this.f{gas: 42};
|
|
}
|
|
}
|
|
// ----
|
|
// Warning: (91-103): Using ".value(...)" is deprecated. Use "{value: ...}" instead.
|
|
// Warning: (132-142): Using ".gas(...)" is deprecated. Use "{gas: ...}" instead.
|
|
// Warning: (169-185): Using ".gas(...)" is deprecated. Use "{gas: ...}" instead.
|
|
// Warning: (218-236): Using ".gas(...)" is deprecated. Use "{gas: ...}" instead.
|
|
// Warning: (304-316): Using ".value(...)" is deprecated. Use "{value: ...}" instead.
|
|
// Warning: (345-355): Using ".gas(...)" is deprecated. Use "{gas: ...}" instead.
|