summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-29927-1.rs
blob: a236e49137554d71b67d9ce662d57932f425e8b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
#![allow(dead_code)]
const fn f() -> usize {
    5
}
struct A {
    field: usize,
}
fn main() {
    let _ = [0; f()];
}