diff options
| author | Paweł Romanowski <pawroman@gmail.com> | 2018-10-02 22:10:04 +0100 |
|---|---|---|
| committer | Paweł Romanowski <pawroman@gmail.com> | 2018-10-02 22:10:04 +0100 |
| commit | 87bf9e2056f8ee71c71e5f9c91afbc1fd965def8 (patch) | |
| tree | 140f9cd92ccf9b196d1d9f0d317141a86734ca20 /src/test/ui/range | |
| parent | f7d35cc5a8ffcf74937e8c00586d97609b1095ab (diff) | |
| download | rust-87bf9e2056f8ee71c71e5f9c91afbc1fd965def8.tar.gz rust-87bf9e2056f8ee71c71e5f9c91afbc1fd965def8.zip | |
Address review comments
Diffstat (limited to 'src/test/ui/range')
| -rw-r--r-- | src/test/ui/range/issue-54505-no-literals.fixed | 10 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505-no-literals.rs | 10 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505-no-literals.stderr | 24 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505-no-std.rs | 10 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505-no-std.stderr | 12 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505.fixed | 10 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505.rs | 10 | ||||
| -rw-r--r-- | src/test/ui/range/issue-54505.stderr | 12 |
8 files changed, 24 insertions, 74 deletions
diff --git a/src/test/ui/range/issue-54505-no-literals.fixed b/src/test/ui/range/issue-54505-no-literals.fixed index 5be024dff53..4d8f67182b9 100644 --- a/src/test/ui/range/issue-54505-no-literals.fixed +++ b/src/test/ui/range/issue-54505-no-literals.fixed @@ -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. - // run-rustfix // Regression test for changes introduced while fixing #54505 diff --git a/src/test/ui/range/issue-54505-no-literals.rs b/src/test/ui/range/issue-54505-no-literals.rs index 57d1938aca8..dc21dcbc2db 100644 --- a/src/test/ui/range/issue-54505-no-literals.rs +++ b/src/test/ui/range/issue-54505-no-literals.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. - // run-rustfix // Regression test for changes introduced while fixing #54505 diff --git a/src/test/ui/range/issue-54505-no-literals.stderr b/src/test/ui/range/issue-54505-no-literals.stderr index a8be4de5f0e..b8811c98d21 100644 --- a/src/test/ui/range/issue-54505-no-literals.stderr +++ b/src/test/ui/range/issue-54505-no-literals.stderr @@ -1,5 +1,5 @@ error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:26:16 + --> $DIR/issue-54505-no-literals.rs:16:16 | LL | take_range(std::ops::Range { start: 0, end: 1 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -11,7 +11,7 @@ LL | take_range(std::ops::Range { start: 0, end: 1 }); found type `std::ops::Range<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:31:16 + --> $DIR/issue-54505-no-literals.rs:21:16 | LL | take_range(::std::ops::Range { start: 0, end: 1 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -23,7 +23,7 @@ LL | take_range(::std::ops::Range { start: 0, end: 1 }); found type `std::ops::Range<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:36:16 + --> $DIR/issue-54505-no-literals.rs:26:16 | LL | take_range(std::ops::RangeFrom { start: 1 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -35,7 +35,7 @@ LL | take_range(std::ops::RangeFrom { start: 1 }); found type `std::ops::RangeFrom<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:41:16 + --> $DIR/issue-54505-no-literals.rs:31:16 | LL | take_range(::std::ops::RangeFrom { start: 1 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -47,7 +47,7 @@ LL | take_range(::std::ops::RangeFrom { start: 1 }); found type `std::ops::RangeFrom<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:46:16 + --> $DIR/issue-54505-no-literals.rs:36:16 | LL | take_range(std::ops::RangeFull {}); | ^^^^^^^^^^^^^^^^^^^^^^ @@ -59,7 +59,7 @@ LL | take_range(std::ops::RangeFull {}); found type `std::ops::RangeFull` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:51:16 + --> $DIR/issue-54505-no-literals.rs:41:16 | LL | take_range(::std::ops::RangeFull {}); | ^^^^^^^^^^^^^^^^^^^^^^^^ @@ -71,7 +71,7 @@ LL | take_range(::std::ops::RangeFull {}); found type `std::ops::RangeFull` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:56:16 + --> $DIR/issue-54505-no-literals.rs:46:16 | LL | take_range(std::ops::RangeInclusive::new(0, 1)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -83,7 +83,7 @@ LL | take_range(std::ops::RangeInclusive::new(0, 1)); found type `std::ops::RangeInclusive<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:61:16 + --> $DIR/issue-54505-no-literals.rs:51:16 | LL | take_range(::std::ops::RangeInclusive::new(0, 1)); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -95,7 +95,7 @@ LL | take_range(::std::ops::RangeInclusive::new(0, 1)); found type `std::ops::RangeInclusive<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:66:16 + --> $DIR/issue-54505-no-literals.rs:56:16 | LL | take_range(std::ops::RangeTo { end: 5 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -107,7 +107,7 @@ LL | take_range(std::ops::RangeTo { end: 5 }); found type `std::ops::RangeTo<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:71:16 + --> $DIR/issue-54505-no-literals.rs:61:16 | LL | take_range(::std::ops::RangeTo { end: 5 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -119,7 +119,7 @@ LL | take_range(::std::ops::RangeTo { end: 5 }); found type `std::ops::RangeTo<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:76:16 + --> $DIR/issue-54505-no-literals.rs:66:16 | LL | take_range(std::ops::RangeToInclusive { end: 5 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -131,7 +131,7 @@ LL | take_range(std::ops::RangeToInclusive { end: 5 }); found type `std::ops::RangeToInclusive<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-literals.rs:81:16 + --> $DIR/issue-54505-no-literals.rs:71:16 | LL | take_range(::std::ops::RangeToInclusive { end: 5 }); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/src/test/ui/range/issue-54505-no-std.rs b/src/test/ui/range/issue-54505-no-std.rs index 0dadaecd7d8..c2b17b53ba1 100644 --- a/src/test/ui/range/issue-54505-no-std.rs +++ b/src/test/ui/range/issue-54505-no-std.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. - // error-pattern: `#[panic_handler]` function required, but not found // error-pattern: language item required, but not found: `eh_personality` diff --git a/src/test/ui/range/issue-54505-no-std.stderr b/src/test/ui/range/issue-54505-no-std.stderr index 035bc640658..2810a3f076d 100644 --- a/src/test/ui/range/issue-54505-no-std.stderr +++ b/src/test/ui/range/issue-54505-no-std.stderr @@ -3,7 +3,7 @@ error: `#[panic_handler]` function required, but not found error: language item required, but not found: `eh_personality` error[E0308]: mismatched types - --> $DIR/issue-54505-no-std.rs:31:16 + --> $DIR/issue-54505-no-std.rs:21:16 | LL | take_range(0..1); | ^^^^ @@ -15,7 +15,7 @@ LL | take_range(0..1); found type `core::ops::Range<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-std.rs:36:16 + --> $DIR/issue-54505-no-std.rs:26:16 | LL | take_range(1..); | ^^^ @@ -27,7 +27,7 @@ LL | take_range(1..); found type `core::ops::RangeFrom<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-std.rs:41:16 + --> $DIR/issue-54505-no-std.rs:31:16 | LL | take_range(..); | ^^ @@ -39,7 +39,7 @@ LL | take_range(..); found type `core::ops::RangeFull` error[E0308]: mismatched types - --> $DIR/issue-54505-no-std.rs:46:16 + --> $DIR/issue-54505-no-std.rs:36:16 | LL | take_range(0..=1); | ^^^^^ @@ -51,7 +51,7 @@ LL | take_range(0..=1); found type `core::ops::RangeInclusive<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-std.rs:51:16 + --> $DIR/issue-54505-no-std.rs:41:16 | LL | take_range(..5); | ^^^ @@ -63,7 +63,7 @@ LL | take_range(..5); found type `core::ops::RangeTo<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505-no-std.rs:56:16 + --> $DIR/issue-54505-no-std.rs:46:16 | LL | take_range(..=42); | ^^^^^ diff --git a/src/test/ui/range/issue-54505.fixed b/src/test/ui/range/issue-54505.fixed index ef8ded0f7a3..f8298c0b5ce 100644 --- a/src/test/ui/range/issue-54505.fixed +++ b/src/test/ui/range/issue-54505.fixed @@ -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. - // run-rustfix // Regression test for #54505 - range borrowing suggestion had diff --git a/src/test/ui/range/issue-54505.rs b/src/test/ui/range/issue-54505.rs index b81c879a37e..03673252dd3 100644 --- a/src/test/ui/range/issue-54505.rs +++ b/src/test/ui/range/issue-54505.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. - // run-rustfix // Regression test for #54505 - range borrowing suggestion had diff --git a/src/test/ui/range/issue-54505.stderr b/src/test/ui/range/issue-54505.stderr index 5a59594ff50..d6e1fb0cef2 100644 --- a/src/test/ui/range/issue-54505.stderr +++ b/src/test/ui/range/issue-54505.stderr @@ -1,5 +1,5 @@ error[E0308]: mismatched types - --> $DIR/issue-54505.rs:24:16 + --> $DIR/issue-54505.rs:14:16 | LL | take_range(0..1); | ^^^^ @@ -11,7 +11,7 @@ LL | take_range(0..1); found type `std::ops::Range<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505.rs:29:16 + --> $DIR/issue-54505.rs:19:16 | LL | take_range(1..); | ^^^ @@ -23,7 +23,7 @@ LL | take_range(1..); found type `std::ops::RangeFrom<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505.rs:34:16 + --> $DIR/issue-54505.rs:24:16 | LL | take_range(..); | ^^ @@ -35,7 +35,7 @@ LL | take_range(..); found type `std::ops::RangeFull` error[E0308]: mismatched types - --> $DIR/issue-54505.rs:39:16 + --> $DIR/issue-54505.rs:29:16 | LL | take_range(0..=1); | ^^^^^ @@ -47,7 +47,7 @@ LL | take_range(0..=1); found type `std::ops::RangeInclusive<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505.rs:44:16 + --> $DIR/issue-54505.rs:34:16 | LL | take_range(..5); | ^^^ @@ -59,7 +59,7 @@ LL | take_range(..5); found type `std::ops::RangeTo<{integer}>` error[E0308]: mismatched types - --> $DIR/issue-54505.rs:49:16 + --> $DIR/issue-54505.rs:39:16 | LL | take_range(..=42); | ^^^^^ |
