summaryrefslogtreecommitdiffstats
path: root/tests/ui/coercion/coercion-slice.rs
blob: b756c8f8203a086df7e2b8690d5a1c728db3f44a (plain)
1
2
3
4
5
6
7
// Tests that we forbid coercion from `[T; n]` to `&[T]`

fn main() {
    let _: &[i32] = [0];
    //~^ ERROR mismatched types
    //~| expected `&[i32]`, found array `[{integer}; 1]`
}