]> git.lizzy.rs Git - rust.git/commitdiff
Update trait-associated-const test to new format
authorbobtwinkles <srkoser+github@gmail.com>
Wed, 7 Feb 2018 05:46:36 +0000 (00:46 -0500)
committerbobtwinkles <srkoser+github@gmail.com>
Wed, 7 Feb 2018 05:46:36 +0000 (00:46 -0500)
src/test/ui/nll/trait-associated-constant.stderr

index 100e3362886b37caef3a3a721858ce593864e117..21c1a6ded93c21e99f958759a070a15b0e34f7ed 100644 (file)
@@ -9,19 +9,13 @@ error[E0308]: mismatched types
 note: the lifetime 'c as defined on the impl at 30:1...
   --> $DIR/trait-associated-constant.rs:30:1
    |
-30 | / impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct1 {
-31 | |     const AC: Option<&'c str> = None;
-32 | |     //~^ ERROR: mismatched types
-33 | | }
-   | |_^
+30 | impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct1 {
+   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 note: ...does not necessarily outlive the lifetime 'b as defined on the impl at 30:1
   --> $DIR/trait-associated-constant.rs:30:1
    |
-30 | / impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct1 {
-31 | |     const AC: Option<&'c str> = None;
-32 | |     //~^ ERROR: mismatched types
-33 | | }
-   | |_^
+30 | impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct1 {
+   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error[E0308]: mismatched types
   --> $DIR/trait-associated-constant.rs:38:5
@@ -34,19 +28,13 @@ error[E0308]: mismatched types
 note: the lifetime 'a as defined on the impl at 37:1...
   --> $DIR/trait-associated-constant.rs:37:1
    |
-37 | / impl<'a: 'b, 'b> Anything<'a, 'b> for FailStruct2 {
-38 | |     const AC: Option<&'a str> = None;
-39 | |     //~^ ERROR: mismatched types
-40 | | }
-   | |_^
+37 | impl<'a: 'b, 'b> Anything<'a, 'b> for FailStruct2 {
+   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 note: ...does not necessarily outlive the lifetime 'b as defined on the impl at 37:1
   --> $DIR/trait-associated-constant.rs:37:1
    |
-37 | / impl<'a: 'b, 'b> Anything<'a, 'b> for FailStruct2 {
-38 | |     const AC: Option<&'a str> = None;
-39 | |     //~^ ERROR: mismatched types
-40 | | }
-   | |_^
+37 | impl<'a: 'b, 'b> Anything<'a, 'b> for FailStruct2 {
+   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 2 previous errors