2021-10-03 10:58:10 -05:00
|
|
|
error[E0380]: auto traits cannot have associated items
|
2020-01-09 04:56:38 -06:00
|
|
|
--> $DIR/issue-23080.rs:5:8
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2021-10-03 10:58:10 -05:00
|
|
|
LL | unsafe auto trait Trait {
|
2023-02-25 07:53:42 -06:00
|
|
|
| ----- auto traits cannot have associated items
|
2021-10-03 10:58:10 -05:00
|
|
|
LL | fn method(&self) {
|
|
|
|
| _____- ^^^^^^
|
|
|
|
LL | | println!("Hello");
|
|
|
|
LL | | }
|
|
|
|
| |_____- help: remove these associated items
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0380`.
|