]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/coercion/coercion-slice.rs
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / coercion / coercion-slice.rs
index 7c5a4e0c3c6f644467c7117cbdc8da80dcfd1d61..1d54d35f649a3d6786b5d7aa91db75df92981fac 100644 (file)
@@ -1,18 +1,7 @@
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 // Tests that we forbid coercion from `[T; n]` to `&[T]`
 
 fn main() {
     let _: &[i32] = [0];
     //~^ ERROR mismatched types
-    //~| expected type `&[i32]`
-    //~| expected &[i32], found array of 1 elements
+    //~| expected &[i32], found array `[{integer}; 1]`
 }