about summary refs log tree commit diff
path: root/src/test/ui/lifetimes/issue-34979.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lifetimes/issue-34979.stderr')
-rw-r--r--src/test/ui/lifetimes/issue-34979.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/lifetimes/issue-34979.stderr b/src/test/ui/lifetimes/issue-34979.stderr
new file mode 100644
index 00000000000..04ad0d12766
--- /dev/null
+++ b/src/test/ui/lifetimes/issue-34979.stderr
@@ -0,0 +1,14 @@
+error[E0283]: type annotations needed
+  --> $DIR/issue-34979.rs:6:13
+   |
+LL | trait Foo {}
+   | --------- required by this bound in `Foo`
+...
+LL |     &'a (): Foo,
+   |             ^^^ cannot infer type for reference `&'a ()`
+   |
+   = note: cannot satisfy `&'a (): Foo`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0283`.