]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/traits/inductive-overflow/lifetime.rs
Rollup merge of #106835 - compiler-errors:new-solver-gat-rebase-oops, r=lcnr
[rust.git] / tests / ui / traits / inductive-overflow / lifetime.rs
index 004e477374a6a8c1dfc041e36f22ba045cc25244..bf536d21cf970b1a1cd97b913881516c28355610 100644 (file)
@@ -16,6 +16,7 @@ impl<'a> Y for C<'a> {
 struct X<T: Y>(T::P);
 
 impl<T: NotAuto> NotAuto for Box<T> {} //~ NOTE: required
+//~^ NOTE unsatisfied trait bound introduced here
 impl<T: Y> NotAuto for X<T> where T::P: NotAuto {}
 impl<'a> NotAuto for C<'a> {}