Files
rust/tests/ui/auto-traits/auto-trait-validation.stderr

85 lines
2.5 KiB
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0567]: auto traits cannot have generic parameters
2024-02-07 10:42:01 +08:00
--> $DIR/auto-trait-validation.rs:6:19
2018-08-08 14:28:26 +02:00
|
LL | auto trait Generic<T> {}
| -------^^^
| |
| auto trait cannot have generic parameters
2018-08-08 14:28:26 +02:00
2021-10-03 17:58:10 +02:00
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/auto-trait-validation.rs:8:20
2018-08-08 14:28:26 +02:00
|
LL | auto trait Bound : Copy {}
| ----- ^^^^
| |
| auto traits cannot have super traits or lifetime bounds
2018-08-08 14:28:26 +02:00
2021-10-03 17:58:10 +02:00
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/auto-trait-validation.rs:10:28
2018-08-08 14:28:26 +02:00
|
2021-10-03 17:58:10 +02:00
LL | auto trait LifetimeBound : 'static {}
| ------------- ^^^^^^^
| |
| auto traits cannot have super traits or lifetime bounds
2021-10-03 17:58:10 +02:00
error[E0380]: auto traits cannot have associated items
2024-02-07 10:42:01 +08:00
--> $DIR/auto-trait-validation.rs:12:25
2021-10-03 17:58:10 +02:00
|
LL | auto trait MyTrait { fn foo() {} }
| ------- ^^^
| |
| auto traits cannot have associated items
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:14:27
|
LL | auto trait AssocTy { type Bar; }
| ------- ^^^
| |
| auto traits cannot have associated items
2018-08-08 14:28:26 +02:00
error[E0567]: auto traits cannot have generic parameters
--> $DIR/auto-trait-validation.rs:16:15
|
LL | auto trait All<'a, T> {
| ---^^^^^^^
| |
| auto trait cannot have generic parameters
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:18:10
|
LL | auto trait All<'a, T> {
| --- auto traits cannot have associated items
LL |
LL | type Bar;
| ^^^
LL |
LL | fn foo() {}
| ^^^
error[E0568]: auto traits cannot have super traits or lifetime bounds
--> $DIR/auto-trait-validation.rs:23:18
|
LL | auto trait All2: Copy + 'static {
| ---- ^^^^ ^^^^^^^
| |
| auto traits cannot have super traits or lifetime bounds
error[E0380]: auto traits cannot have associated items
--> $DIR/auto-trait-validation.rs:25:10
|
LL | auto trait All2: Copy + 'static {
| ---- auto traits cannot have associated items
LL |
LL | type Bar;
| ^^^
LL |
LL | fn foo() {}
| ^^^
error: aborting due to 9 previous errors
2018-08-08 14:28:26 +02:00
2019-10-08 13:51:58 +02:00
Some errors have detailed explanations: E0380, E0567, E0568.
2019-10-07 14:08:26 +02:00
For more information about an error, try `rustc --explain E0380`.