diff options
| author | Matthew Russo <mcr431@nyu.edu> | 2018-08-21 21:12:23 -0400 |
|---|---|---|
| committer | Matthew Russo <mcr431@nyu.edu> | 2018-08-24 08:51:25 -0400 |
| commit | 79afc6e9e880244bf841ae85d02505b257a28343 (patch) | |
| tree | 685248ef715d9b5f1dac58207340f51e24989702 /src/test/ui/error-codes | |
| parent | 34e76375ce08a73b4e9a14a8b2bff817b6586478 (diff) | |
| download | rust-79afc6e9e880244bf841ae85d02505b257a28343.tar.gz rust-79afc6e9e880244bf841ae85d02505b257a28343.zip | |
updates tests to use new error code
Diffstat (limited to 'src/test/ui/error-codes')
| -rw-r--r-- | src/test/ui/error-codes/E0087.rs | 18 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0088.rs | 17 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0089.rs | 15 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0090.rs | 15 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0243.rs | 16 | ||||
| -rw-r--r-- | src/test/ui/error-codes/E0244.rs | 17 |
6 files changed, 0 insertions, 98 deletions
diff --git a/src/test/ui/error-codes/E0087.rs b/src/test/ui/error-codes/E0087.rs deleted file mode 100644 index bea76f34220..00000000000 --- a/src/test/ui/error-codes/E0087.rs +++ /dev/null @@ -1,18 +0,0 @@ -// 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() {} -fn bar<T>() {} - -fn main() { - foo::<f64>(); //~ ERROR wrong number of type arguments: expected 0, found 1 [E0087] - - bar::<f64, u64>(); //~ ERROR wrong number of type arguments: expected 1, found 2 [E0087] -} diff --git a/src/test/ui/error-codes/E0088.rs b/src/test/ui/error-codes/E0088.rs deleted file mode 100644 index db84a4edc48..00000000000 --- a/src/test/ui/error-codes/E0088.rs +++ /dev/null @@ -1,17 +0,0 @@ -// 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 f() {} -fn g<'a>() -> &'a u8 { loop {} } - -fn main() { - f::<'static>(); //~ ERROR E0088 - g::<'static, 'static>(); //~ ERROR E0088 -} diff --git a/src/test/ui/error-codes/E0089.rs b/src/test/ui/error-codes/E0089.rs deleted file mode 100644 index 4e6196a7b89..00000000000 --- a/src/test/ui/error-codes/E0089.rs +++ /dev/null @@ -1,15 +0,0 @@ -// 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<T, U>() {} - -fn main() { - foo::<f64>(); //~ ERROR wrong number of type arguments: expected 2, found 1 [E0089] -} diff --git a/src/test/ui/error-codes/E0090.rs b/src/test/ui/error-codes/E0090.rs deleted file mode 100644 index 26be4c12f07..00000000000 --- a/src/test/ui/error-codes/E0090.rs +++ /dev/null @@ -1,15 +0,0 @@ -// 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 wrong number of lifetime arguments: expected 2, found 1 [E0090] -} diff --git a/src/test/ui/error-codes/E0243.rs b/src/test/ui/error-codes/E0243.rs deleted file mode 100644 index 615ce0b5d42..00000000000 --- a/src/test/ui/error-codes/E0243.rs +++ /dev/null @@ -1,16 +0,0 @@ -// 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. - -struct Foo<T> { x: T } -struct Bar { x: Foo } - //~^ ERROR wrong number of type arguments: expected 1, found 0 [E0243] - -fn main() { -} diff --git a/src/test/ui/error-codes/E0244.rs b/src/test/ui/error-codes/E0244.rs deleted file mode 100644 index 9a78b3139d0..00000000000 --- a/src/test/ui/error-codes/E0244.rs +++ /dev/null @@ -1,17 +0,0 @@ -// 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. - -struct Foo { x: bool } -struct Bar<S, T> { x: Foo<S, T> } - //~^ ERROR wrong number of type arguments: expected 0, found 2 [E0244] - - -fn main() { -} |
