summary refs log tree commit diff
path: root/src/test/ui/alloc-error
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2018-12-25 08:56:47 -0700
committerMark Rousskov <mark.simulacrum@gmail.com>2018-12-25 21:08:33 -0700
commit2a663555ddf36f6b041445894a8c175cd1bc718c (patch)
tree98a0185efa6c05885b8d75c76d65880d514ff8d3 /src/test/ui/alloc-error
parent14b96659e4e9b2f31431df48f47c219957e2666a (diff)
downloadrust-2a663555ddf36f6b041445894a8c175cd1bc718c.tar.gz
rust-2a663555ddf36f6b041445894a8c175cd1bc718c.zip
Remove licenses
Diffstat (limited to 'src/test/ui/alloc-error')
-rw-r--r--src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.rs10
-rw-r--r--src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.stderr4
-rw-r--r--src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.rs10
-rw-r--r--src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.stderr4
-rw-r--r--src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs10
-rw-r--r--src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.stderr2
6 files changed, 5 insertions, 35 deletions
diff --git a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.rs b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.rs
index 0a54ae8341b..36041e4b8ef 100644
--- a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.rs
+++ b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.rs
@@ -1,13 +1,3 @@
-// Copyright 2018 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.
-
 // compile-flags:-C panic=abort
 
 #![feature(alloc_error_handler, panic_handler)]
diff --git a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.stderr b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.stderr
index 6dd905ceab4..8efbf7f78d9 100644
--- a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.stderr
+++ b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-1.stderr
@@ -1,11 +1,11 @@
 error: return type should be `!`
-  --> $DIR/alloc-error-handler-bad-signature-1.rs:22:6
+  --> $DIR/alloc-error-handler-bad-signature-1.rs:12:6
    |
 LL | ) -> () //~ ERROR return type should be `!`
    |      ^^
 
 error: argument should be `Layout`
-  --> $DIR/alloc-error-handler-bad-signature-1.rs:21:11
+  --> $DIR/alloc-error-handler-bad-signature-1.rs:11:11
    |
 LL |     info: &Layout, //~ ERROR argument should be `Layout`
    |           ^^^^^^^
diff --git a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.rs b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.rs
index b33d82cd550..009f6bce6d3 100644
--- a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.rs
+++ b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.rs
@@ -1,13 +1,3 @@
-// Copyright 2018 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.
-
 // compile-flags:-C panic=abort
 
 #![feature(alloc_error_handler, panic_handler)]
diff --git a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.stderr b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.stderr
index c1fcdc75833..95ef9a0522c 100644
--- a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.stderr
+++ b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-2.stderr
@@ -1,11 +1,11 @@
 error: return type should be `!`
-  --> $DIR/alloc-error-handler-bad-signature-2.rs:22:3
+  --> $DIR/alloc-error-handler-bad-signature-2.rs:12:3
    |
 LL | ) { //~ ERROR return type should be `!`
    |   ^
 
 error: argument should be `Layout`
-  --> $DIR/alloc-error-handler-bad-signature-2.rs:21:11
+  --> $DIR/alloc-error-handler-bad-signature-2.rs:11:11
    |
 LL |     info: Layout, //~ ERROR argument should be `Layout`
    |           ^^^^^^
diff --git a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
index 0e102dd08ea..f2d884b7469 100644
--- a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
+++ b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
@@ -1,13 +1,3 @@
-// Copyright 2018 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.
-
 // compile-flags:-C panic=abort
 
 #![feature(alloc_error_handler, panic_handler)]
diff --git a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.stderr b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.stderr
index e7885537b06..284802f21b9 100644
--- a/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.stderr
+++ b/src/test/ui/alloc-error/alloc-error-handler-bad-signature-3.stderr
@@ -1,5 +1,5 @@
 error: function should have one argument
-  --> $DIR/alloc-error-handler-bad-signature-3.rs:20:1
+  --> $DIR/alloc-error-handler-bad-signature-3.rs:10:1
    |
 LL | fn oom() -> ! { //~ ERROR function should have one argument
    | ^^^^^^^^^^^^^