]> git.lizzy.rs Git - rust.git/blobdiff - src/test/incremental/issue-39569.rs
Rollup merge of #66059 - RalfJung:panic-on-non-zero, r=eddyb
[rust.git] / src / test / incremental / issue-39569.rs
index 5b53e94825300d2219b3b82e40423787e27af80e..881ecfca740bf422fc23c2ccc633943627ccb865 100644 (file)
@@ -1,13 +1,3 @@
-// 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.
-
 // Regression test for a weird corner case in our dep-graph reduction
 // code. When we solve `CoerceUnsized<Foo>`, we find no impls, so we
 // don't end up with an edge to any HIR nodes, but it still gets
@@ -35,4 +25,3 @@ fn main() {
     let x: Arc<FooX> = Arc::new(FooX { x: 22 });
     let y: Arc<FooX> = x;
 }
-