We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 210d693 + c745b4a commit c9f7758Copy full SHA for c9f7758
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