summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr')
-rw-r--r--src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr b/src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr
index df2b3ed19..65a0af0d2 100644
--- a/src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr
+++ b/src/test/ui/type-alias-impl-trait/missing_lifetime_bound.stderr
@@ -1,8 +1,11 @@
-error: non-defining opaque type use in defining scope
+error[E0700]: hidden type for `Opaque<'a, T>` captures lifetime that does not appear in bounds
--> $DIR/missing_lifetime_bound.rs:4:47
|
LL | fn defining<'a, T>(x: &'a i32) -> Opaque<T> { x }
- | ^ lifetime `'a` is part of concrete type but not used in parameter list of the `impl Trait` type alias
+ | -- ^
+ | |
+ | hidden type `&'a i32` captures the lifetime `'a` as defined here
error: aborting due to previous error
+For more information about this error, try `rustc --explain E0700`.