rust/tests/ui/traits/inductive-overflow/supertrait-auto-trait.stderr

12 lines
424 B
Plaintext
Raw Normal View History

2021-10-03 15:58:10 +00:00
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/supertrait-auto-trait.rs:8:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | auto trait Magic: Copy {}
2021-10-03 15:58:10 +00:00
| -----^^^^^^ help: remove the super traits or lifetime bounds
| |
| auto traits cannot have super traits or lifetime bounds
2018-08-08 12:28:26 +00:00
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0568`.