about summary refs log tree commit diff
path: root/tests/ui/numbers-arithmetic/signed-shift-const-eval.rs
blob: dda54e2a579b5e602e6a2c335e68911231e320bf (plain)
1
2
3
4
5
6
7
8
//@ run-pass
#![allow(non_camel_case_types)]


enum test { thing = -5 >> 1_usize }
pub fn main() {
    assert_eq!(test::thing as isize, -3);
}