rust/tests/ui/auto-traits/issue-23080-2.next.stderr

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

12 lines
384 B
Plaintext
Raw Normal View History

2021-10-03 15:58:10 +00:00
error[E0380]: auto traits cannot have associated items
--> $DIR/issue-23080-2.rs:9:10
2018-07-15 21:11:54 +00:00
|
LL | unsafe auto trait Trait {
| ----- auto traits cannot have associated items
LL | type Output;
2021-10-03 15:58:10 +00:00
| -----^^^^^^- help: remove these associated items
2018-07-15 21:11:54 +00:00
error: aborting due to 1 previous error
2018-07-15 21:11:54 +00:00
For more information about this error, try `rustc --explain E0380`.