mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
295 B
Solidity
11 lines
295 B
Solidity
contract A {
|
|
function f() public {
|
|
uint x = true ? 1 : 0;
|
|
uint y = false ? 0 : 1;
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 2072: (47-53): Unused local variable.
|
|
// Warning 2072: (78-84): Unused local variable.
|
|
// Warning 2018: (17-107): Function state mutability can be restricted to pure
|