aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/conditional_with_constants.sol
blob: 705fbadf3923d86311386bcfb75133fc69a13582 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
            
                         




                                 


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