2021-10-03 17:58:10 +02:00
|
|
|
error[E0380]: auto traits cannot have associated items
|
2023-06-02 19:21:56 +00:00
|
|
|
--> $DIR/issue-23080-2.rs:8:10
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2020-03-06 10:55:21 -08:00
|
|
|
LL | unsafe auto trait Trait {
|
2023-02-25 13:53:42 +00:00
|
|
|
| ----- auto traits cannot have associated items
|
2020-03-06 10:55:21 -08:00
|
|
|
LL | type Output;
|
2021-10-03 17:58:10 +02:00
|
|
|
| -----^^^^^^- help: remove these associated items
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2020-08-13 20:45:08 +01:00
|
|
|
error: aborting due to previous error
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2020-08-13 20:45:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0380`.
|