]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/invariant.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / const-generics / invariant.stderr
CommitLineData
3c0e092e
XL
1warning: conflicting implementations of trait `SadBee` for type `for<'a> fn(&'a ())`
2 --> $DIR/invariant.rs:14:1
3 |
4LL | impl SadBee for for<'a> fn(&'a ()) {
5 | ---------------------------------- first implementation here
6...
7LL | impl SadBee for fn(&'static ()) {
8 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `for<'a> fn(&'a ())`
9 |
10 = note: `#[warn(coherence_leak_check)]` on by default
11 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
12 = note: for more information, see issue #56105 <https://github.com/rust-lang/rust/issues/56105>
13 = note: this behavior recently changed as a result of a bug fix; see rust-lang/rust#56105 for details
14
15error[E0308]: mismatched types
16 --> $DIR/invariant.rs:27:5
17 |
18LL | v
19 | ^ one type is more general than the other
20 |
923072b8
FG
21 = note: expected reference `&Foo<fn(&())>`
22 found reference `&Foo<for<'a> fn(&'a ())>`
3c0e092e
XL
23
24error: aborting due to previous error; 1 warning emitted
25
26For more information about this error, try `rustc --explain E0308`.