We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e7a18e + ca5bbd1 commit cfed378Copy full SHA for cfed378
src/librustc_error_codes/error_codes/E0368.md
@@ -1,5 +1,7 @@
1
-This error indicates that a binary assignment operator like `+=` or `^=` was
2
-applied to a type that doesn't support it. For example:
+A binary assignment operator like `+=` or `^=` was applied to a type that
+doesn't support it.
3
+
4
+Erroneous code example:
5
6
```compile_fail,E0368
7
let mut x = 12f32; // error: binary operation `<<` cannot be applied to
src/librustc_error_codes/error_codes/E0369.md
@@ -1,4 +1,5 @@
A binary operation was attempted on a type which doesn't support it.
Erroneous code example:
```compile_fail,E0369
0 commit comments