mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
24 lines
1.2 KiB
Solidity
24 lines
1.2 KiB
Solidity
|
contract C {
|
||
|
function f() view public {
|
||
|
address(this).transfer(1);
|
||
|
}
|
||
|
function g() view public {
|
||
|
require(address(this).send(2));
|
||
|
}
|
||
|
function h() view public {
|
||
|
selfdestruct(address(this));
|
||
|
}
|
||
|
function i() view public {
|
||
|
require(address(this).delegatecall(""));
|
||
|
}
|
||
|
function j() view public {
|
||
|
require(address(this).call(""));
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// TypeError: (52-77): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|
||
|
// TypeError: (132-153): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|
||
|
// TypeError: (201-228): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|
||
|
// TypeError: (283-313): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|
||
|
// TypeError: (369-391): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
|