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

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

23 lines
841 B
Plaintext
Raw Normal View History

2023-11-13 08:36:12 +08:00
error[E0567]: auto traits cannot have generic parameters
2024-02-20 04:39:25 +08:00
--> $DIR/issue-117789.rs:1:17
2023-11-13 08:36:12 +08:00
|
LL | auto trait Trait<P> {}
| -----^^^ help: remove the parameters
| |
| auto trait cannot have generic parameters
error[E0658]: auto traits are experimental and possibly buggy
2024-02-20 04:39:25 +08:00
--> $DIR/issue-117789.rs:1:1
2023-11-13 08:36:12 +08:00
|
LL | auto trait Trait<P> {}
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #13231 <https://github.com/rust-lang/rust/issues/13231> for more information
= help: add `#![feature(auto_traits)]` to the crate attributes to enable
2024-01-10 14:39:02 +08:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2023-11-13 08:36:12 +08:00
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0567, E0658.
For more information about an error, try `rustc --explain E0567`.