about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Turner <jturner@mozilla.com>2017-01-06 10:18:11 +1100
committerJonathan Turner <jturner@mozilla.com>2017-01-06 10:18:11 +1100
commit33bb4715e767b64f140495b36b68d6729ef127e5 (patch)
tree85108da16466a97ba59d83ac18662ca58f1fa4a1
parent069aa30445f52e111f888e1592e8a1d449c877d4 (diff)
downloadrust-33bb4715e767b64f140495b36b68d6729ef127e5.tar.gz
rust-33bb4715e767b64f140495b36b68d6729ef127e5.zip
Fix tidy warning
-rw-r--r--src/test/compile-fail/E0090.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/compile-fail/E0090.rs b/src/test/compile-fail/E0090.rs
index 4656f527f1f..4600d2d6385 100644
--- a/src/test/compile-fail/E0090.rs
+++ b/src/test/compile-fail/E0090.rs
@@ -1,3 +1,13 @@
+// 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.
+
 fn foo<'a: 'b, 'b: 'a>() {}
 fn main() {
     foo::<'static>();//~ ERROR E0090