mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
285 B
Solidity
10 lines
285 B
Solidity
|
==== Source: s1.sol ====
|
||
|
function f() {
|
||
|
ecrecover("1234", 1, "0", abi.decode("", (bytes2)));
|
||
|
}
|
||
|
==== Source: s2.sol ====
|
||
|
contract C {}
|
||
|
// ----
|
||
|
// Warning 6133: (s1.sol:16-67): Statement has no effect.
|
||
|
// Warning 2018: (s1.sol:0-70): Function state mutability can be restricted to pure
|