about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_arg_infer/array-repeat-expr.rs
blob: 34091badfa7f1400dd53d009c123479baed4b767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ run-pass

// To avoid having to `or` gate `_` as an expr.
#![feature(generic_arg_infer)]

fn foo() -> [u8; 3] {
    let x: [u8; _] = [0; _];
    x
}

fn main() {
    assert_eq!([0; _], foo());
}