aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/117_shift_warn_literal_base_2.sol
blob: 954d1943a6466989e95591d995492a5d013e643c (plain) (tree)
1
2
3
4
5
6





                                            
contract test {
    function f() pure public returns(uint) {
        uint8 x = 100;
        return uint8(10) << x;
    }
}