]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/fat-ptr-cast.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / fat-ptr-cast.rs
index 0802963ad228ffccbca5c6f10a01b817c5d9d94d..a0fad583a1645a069f3fbbf0be75dd329ac0a648 100644 (file)
@@ -1,13 +1,3 @@
-// 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.
-
 trait Trait {}
 
 // Make sure casts between thin-pointer <-> fat pointer obey RFC401
@@ -29,6 +19,6 @@ fn main() {
     q as *const [i32]; //~ ERROR cannot cast
 
     // #21397
-    let t: *mut (Trait + 'static) = 0 as *mut _; //~ ERROR casting
+    let t: *mut (dyn Trait + 'static) = 0 as *mut _; //~ ERROR casting
     let mut fail: *const str = 0 as *const str; //~ ERROR casting
 }