summaryrefslogtreecommitdiffstats
path: root/src/test/ui/impl-trait/unactionable_diagnostic.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/impl-trait/unactionable_diagnostic.fixed')
-rw-r--r--src/test/ui/impl-trait/unactionable_diagnostic.fixed25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/impl-trait/unactionable_diagnostic.fixed b/src/test/ui/impl-trait/unactionable_diagnostic.fixed
new file mode 100644
index 000000000..6c2505177
--- /dev/null
+++ b/src/test/ui/impl-trait/unactionable_diagnostic.fixed
@@ -0,0 +1,25 @@
+// run-rustfix
+
+pub trait Trait {}
+
+pub struct Foo;
+
+impl Trait for Foo {}
+
+fn foo<'x, P>(
+ _post: P,
+ x: &'x Foo,
+) -> &'x impl Trait {
+ x
+}
+
+pub fn bar<'t, T: 't>(
+ //~^ HELP: consider adding an explicit lifetime bound...
+ post: T,
+ x: &'t Foo,
+) -> &'t impl Trait {
+ foo(post, x)
+ //~^ ERROR: the parameter type `T` may not live long enough
+}
+
+fn main() {}