]> git.proxmox.com Git - rustc.git/blame - tests/ui/auto-traits/issue-23080.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / auto-traits / issue-23080.stderr
CommitLineData
c295e0f8 1error[E0380]: auto traits cannot have associated items
ba9703b0 2 --> $DIR/issue-23080.rs:5:8
8faf50e0 3 |
c295e0f8 4LL | unsafe auto trait Trait {
9ffffee4 5 | ----- auto traits cannot have associated items
c295e0f8
XL
6LL | fn method(&self) {
7 | _____- ^^^^^^
8LL | | println!("Hello");
9LL | | }
10 | |_____- help: remove these associated items
8faf50e0 11
4b012472 12error: aborting due to 1 previous error
8faf50e0
XL
13
14For more information about this error, try `rustc --explain E0380`.