]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coercion/coercion-slice.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coercion / coercion-slice.rs
CommitLineData
1a4d82fc 1// Tests that we forbid coercion from `[T; n]` to `&[T]`
223e47cc
LB
2
3fn main() {
c34b1796 4 let _: &[i32] = [0];
85aaf69f 5 //~^ ERROR mismatched types
60c5eb7d 6 //~| expected `&[i32]`, found array `[{integer}; 1]`
223e47cc 7}