about summary refs log tree commit diff
path: root/tests/ui/cast/constant-expression-cast-9942.rs
blob: d0a6f27b7e33cfaf052d89c503a355c08d4fea16 (plain)
1
2
3
4
5
6
// https://github.com/rust-lang/rust/issues/9942
//@ run-pass

pub fn main() {
    const S: usize = 23 as usize; [0; S]; ()
}