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

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

15 lines
450 B
Plaintext
Raw Normal View History

2021-10-03 10:58:10 -05:00
error[E0380]: auto traits cannot have associated items
--> $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 {
| ----- 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`.