]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/coherence-fn-covariant-bound-vs-static.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / coherence / coherence-fn-covariant-bound-vs-static.stderr
CommitLineData
136023e0 1error[E0119]: conflicting implementations of trait `Trait` for type `for<'r> fn(for<'r> fn(&'r ()))`
f035d41b
XL
2 --> $DIR/coherence-fn-covariant-bound-vs-static.rs:17:1
3 |
4LL | impl Trait for for<'r> fn(fn(&'r ())) {}
5 | ------------------------------------- first implementation here
6LL | impl<'a> Trait for fn(fn(&'a ())) {}
136023e0 7 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `for<'r> fn(for<'r> fn(&'r ()))`
f035d41b
XL
8 |
9 = note: this behavior recently changed as a result of a bug fix; see rust-lang/rust#56105 for details
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0119`.