blob: c1b16b2f403d7c0e48ce4ec436c68b97de706a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0380]: auto traits cannot have associated items
--> $DIR/issue-23080.rs:5:8
|
LL | unsafe auto trait Trait {
| ----- auto trait cannot have associated items
LL | fn method(&self) {
| _____- ^^^^^^
LL | | println!("Hello");
LL | | }
| |_____- help: remove these associated items
error: aborting due to previous error
For more information about this error, try `rustc --explain E0380`.
|