aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3665.rs
blob: d66a81fc1aec94c20f7c366faaee11d748d58fe5 (plain)
1
2
3
4
5
6
pub const uint_val: usize = 1;
pub const uint_expr: usize = 1 << uint_val;

pub fn test() -> usize {
    uint_expr
}