]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-27008.rs
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / issues / issue-27008.rs
index f80135848e0c10fe4f8de3139b715a58fd4f82c3..1a08647358cccd63883d009798e184baac540d3b 100644 (file)
@@ -1,19 +1,7 @@
-// Copyright 2015 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.
-
 struct S;
 
 fn main() {
     let b = [0; S];
     //~^ ERROR mismatched types
-    //~| expected type `usize`
-    //~| found type `S`
     //~| expected usize, found struct `S`
 }