mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
348 B
Solidity
12 lines
348 B
Solidity
|
contract A {
|
||
|
function f() {
|
||
|
uint x = 3 > 0 ? 3 : 0;
|
||
|
uint y = (3 > 0) ? 3 : 0;
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning: (17-103): No visibility specified. Defaulting to "public".
|
||
|
// Warning: (40-46): Unused local variable.
|
||
|
// Warning: (72-78): Unused local variable.
|
||
|
// Warning: (17-103): Function state mutability can be restricted to pure
|