solidity/test/libsolidity/syntaxTests/parsing/conditional_with_constants.sol
2022-04-01 23:41:18 -05:00

11 lines
316 B
Solidity

contract A {
function f() public {
uint x = 3 > 0 ? 3 : 0;
uint y = (3 > 0) ? 3 : 0;
}
}
// ----
// Warning 2072: (47-53='uint x'): Unused local variable.
// Warning 2072: (79-85='uint y'): Unused local variable.
// Warning 2018: (17-110): Function state mutability can be restricted to pure