]> git.proxmox.com Git - rustc.git/blame - src/test/ui/auto-trait-validation.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / auto-trait-validation.stderr
CommitLineData
b7449926 1error[E0567]: auto traits cannot have generic parameters
0731742a 2 --> $DIR/auto-trait-validation.rs:3:1
b7449926
XL
3 |
4LL | auto trait Generic<T> {}
5 | ^^^^^^^^^^^^^^^^^^^^^^^^
6
7error[E0568]: auto traits cannot have super traits
0731742a 8 --> $DIR/auto-trait-validation.rs:5:1
b7449926
XL
9 |
10LL | auto trait Bound : Copy {}
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13error[E0380]: auto traits cannot have methods or associated items
0731742a 14 --> $DIR/auto-trait-validation.rs:7:1
b7449926
XL
15 |
16LL | auto trait MyTrait { fn foo() {} }
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19error: aborting due to 3 previous errors
20
21Some errors occurred: E0380, E0567, E0568.
22For more information about an error, try `rustc --explain E0380`.