]> git.lizzy.rs Git - rust.git/blob - tests/ui/coherence/coherence-fn-covariant-bound-vs-static.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / coherence / coherence-fn-covariant-bound-vs-static.stderr
1 error[E0119]: conflicting implementations of trait `Trait` for type `for<'r> fn(fn(&'r ()))`
2   --> $DIR/coherence-fn-covariant-bound-vs-static.rs:17:1
3    |
4 LL | impl Trait for for<'r> fn(fn(&'r ())) {}
5    | ------------------------------------- first implementation here
6 LL | impl<'a> Trait for fn(fn(&'a ())) {}
7    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `for<'r> fn(fn(&'r ()))`
8    |
9    = note: this behavior recently changed as a result of a bug fix; see rust-lang/rust#56105 for details
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0119`.