summaryrefslogtreecommitdiffstats
path: root/tests/ui/array-slice-vec/array-not-vector.rs
blob: d8b5b10d59148abd6706741db7ad9360911a0aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    let _x: i32 = [1, 2, 3];
    //~^ ERROR mismatched types
    //~| expected `i32`, found `[{integer}; 3]`

    let x: &[i32] = &[1, 2, 3];
    let _y: &i32 = x;
    //~^ ERROR mismatched types
    //~| expected reference `&i32`
    //~| found reference `&[i32]`
    //~| expected `&i32`, found `&[i32]`
}