rust/tests/ui/issues/issue-24682.stderr

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

23 lines
707 B
Plaintext
Raw Normal View History

error[E0229]: associated item constraints are not allowed here
2018-12-25 15:56:47 +00:00
--> $DIR/issue-24682.rs:5:11
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | / N=
2018-07-15 21:11:54 +00:00
LL | | Self::N> {
| |_________________^ associated item constraint not allowed here
2018-07-15 21:11:54 +00:00
error[E0229]: associated item constraints are not allowed here
2018-12-25 15:56:47 +00:00
--> $DIR/issue-24682.rs:11:13
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | <N=()>
| ^^^^ associated item constraint not allowed here
2018-07-15 21:11:54 +00:00
error[E0229]: associated item constraints are not allowed here
2018-12-25 15:56:47 +00:00
--> $DIR/issue-24682.rs:15:13
2018-07-15 21:11:54 +00:00
|
2019-03-09 12:03:44 +00:00
LL | u32<N=()>
| ^^^^ associated item constraint not allowed here
2018-07-15 21:11:54 +00:00
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0229`.