We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c79f5f0 + c745b4a commit e01dc83Copy full SHA for e01dc83
src/librustc_error_codes/error_codes/E0380.md
@@ -1,4 +1,14 @@
1
-Auto traits cannot have methods or associated items.
2
-For more information see the [opt-in builtin traits RFC][RFC 19].
+An auto trait was declared with a method or an associated item.
+
3
+Erroneous code example:
4
5
+```compile_fail,E0380
6
+unsafe auto trait Trait {
7
+ type Output; // error!
8
+}
9
+```
10
11
+Auto traits cannot have methods or associated items. For more information see
12
+the [opt-in builtin traits RFC][RFC 19].
13
14
[RFC 19]: https://github.com/rust-lang/rfcs/blob/master/text/0019-opt-in-builtin-traits.md
0 commit comments