mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
259 B
Solidity
9 lines
259 B
Solidity
contract test {
|
|
function fun(uint256 a) public returns (uint) {
|
|
if (a >= 8) { return 2; } else { uint b = 7; }
|
|
}
|
|
}
|
|
// ----
|
|
// Warning: (109-115): Unused local variable.
|
|
// Warning: (20-128): Function state mutability can be restricted to pure
|