]> git.proxmox.com Git - rustc.git/blame - tests/ui/const-generics/exhaustive-value.stderr
New upstream version 1.72.1+dfsg1
[rustc.git] / tests / ui / const-generics / exhaustive-value.stderr
CommitLineData
29967ef6 1error[E0277]: the trait bound `(): Foo<N>` is not satisfied
94222f64 2 --> $DIR/exhaustive-value.rs:262:5
29967ef6 3 |
29967ef6
XL
4LL | <() as Foo<N>>::test()
5 | ^^^^^^^^^^^^^^^^^^^^ the trait `Foo<N>` is not implemented for `()`
6 |
04454e1e 7 = help: the following other types implement trait `Foo<N>`:
064997fb 8 <() as Foo<0>>
fe692bf9
FG
9 <() as Foo<1>>
10 <() as Foo<2>>
11 <() as Foo<3>>
12 <() as Foo<4>>
13 <() as Foo<5>>
14 <() as Foo<6>>
15 <() as Foo<7>>
04454e1e 16 and 248 others
29967ef6
XL
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0277`.