about summary refs log tree commit diff
path: root/src/test/ui/nll/trait-associated-constant.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/trait-associated-constant.stderr')
-rw-r--r--src/test/ui/nll/trait-associated-constant.stderr22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/nll/trait-associated-constant.stderr b/src/test/ui/nll/trait-associated-constant.stderr
deleted file mode 100644
index cf1c52ba7cc..00000000000
--- a/src/test/ui/nll/trait-associated-constant.stderr
+++ /dev/null
@@ -1,22 +0,0 @@
-error[E0308]: const not compatible with trait
-  --> $DIR/trait-associated-constant.rs:21:5
-   |
-LL |     const AC: Option<&'c str> = None;
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
-   |
-   = note: expected enum `Option<&'b str>`
-              found enum `Option<&'c str>`
-note: the lifetime `'c` as defined here...
-  --> $DIR/trait-associated-constant.rs:20:18
-   |
-LL | impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct {
-   |                  ^^
-note: ...does not necessarily outlive the lifetime `'b` as defined here
-  --> $DIR/trait-associated-constant.rs:20:14
-   |
-LL | impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct {
-   |              ^^
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.