aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3924.rs
blob: cc423cec487fbb5862a7004d71771c0f6a0f2eab (plain)
1
2
3
4
5
6
pub fn main() {
    const S: usize = 23 as i64;
    // { dg-error {mismatched types, expected .usize. but got .i64.} "" { target *-*-* } .-1 }
    [0; S];
    ()
}