rust/src/test/ui/auto-traits/issue-23080.stderr

12 lines
345 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0380]: auto traits cannot have methods or associated items
--> $DIR/issue-23080.rs:5:8
2018-07-15 21:11:54 +00:00
|
LL | unsafe auto trait Trait {
| ----- auto trait cannot have items
LL | fn method(&self) {
| ^^^^^^
2018-07-15 21:11:54 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0380`.