rust/tests/ui/async-await/issues/issue-78654.full.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
760 B
Plaintext
Raw Normal View History

2020-11-04 15:32:18 +00:00
error[E0573]: expected type, found built-in attribute `feature`
2020-11-17 10:44:21 +00:00
--> $DIR/issue-78654.rs:9:15
2020-11-04 15:32:18 +00:00
|
LL | impl<const H: feature> Foo {
| ^^^^^^^ not a type
error[E0207]: the const parameter `H` is not constrained by the impl trait, self type, or predicates
--> $DIR/issue-78654.rs:9:6
2020-11-04 15:32:18 +00:00
|
LL | impl<const H: feature> Foo {
| ^^^^^^^^^^^^^^^^ unconstrained const parameter
2020-11-04 15:32:18 +00:00
|
= note: expressions using a const parameter must map each value to a distinct output value
= note: proving the result of expressions other than the parameter are unique is not supported
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0207, E0573.
For more information about an error, try `rustc --explain E0207`.