]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0393.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / error-codes / E0393.rs
index 9165bc2837b517968d34c3921a97c16aed798569..0c1a369806d8f399cb460a9b04d1a75cd91a6b20 100644 (file)
@@ -1,16 +1,6 @@
-// Copyright 2016 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 A<T=Self> {}
 
-fn together_we_will_rule_the_galaxy(son: &A) {}
+fn together_we_will_rule_the_galaxy(son: &dyn A) {}
 //~^ ERROR E0393
 
 fn main() {