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




                               


                                                                         
contract A {
    function f() public {
        uint x = true ? 1 : 0;
        uint y = false ? 0 : 1;
    }
}
// ----
// Warning: (47-53): Unused local variable.
// Warning: (78-84): Unused local variable.
// Warning: (17-107): Function state mutability can be restricted to pure