]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-66353.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-66353.stderr
CommitLineData
e74abb32
XL
1error[E0277]: the trait bound `(): _A` is not satisfied
2 --> $DIR/issue-66353.rs:12:14
3 |
4LL | _Func::< <() as _A>::AssocT >::func(());
5 | ^^^^^^^^^^^^^^^^^^ the trait `_A` is not implemented for `()`
6
7error[E0277]: the trait bound `(): _Func<_>` is not satisfied
8 --> $DIR/issue-66353.rs:12:41
9 |
e74abb32
XL
10LL | _Func::< <() as _A>::AssocT >::func(());
11 | ^^ the trait `_Func<_>` is not implemented for `()`
136023e0
XL
12 |
13note: required by `_Func::func`
14 --> $DIR/issue-66353.rs:4:5
15 |
16LL | fn func(_: Self);
17 | ^^^^^^^^^^^^^^^^^
e74abb32
XL
18
19error: aborting due to 2 previous errors
20
21For more information about this error, try `rustc --explain E0277`.