about summary refs log tree commit diff
path: root/src/librustc_error_codes/error_codes
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2020-06-12 14:01:47 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2020-06-16 13:14:04 +0200
commita19dfb573d18c8b937c159cda24a3bb40ca5082d (patch)
tree63f57eb00488e479d5fe3c7edaa83007262148f1 /src/librustc_error_codes/error_codes
parent59493917be3e87e1dfb44a9ccb66a9f9b17228e6 (diff)
Create new E0763 error code for unterminated byte constant
Diffstat (limited to 'src/librustc_error_codes/error_codes')
-rw-r--r--src/librustc_error_codes/error_codes/E0763.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/librustc_error_codes/error_codes/E0763.md b/src/librustc_error_codes/error_codes/E0763.md
new file mode 100644
index 00000000000..095b779f3e7
--- /dev/null
+++ b/src/librustc_error_codes/error_codes/E0763.md
@@ -0,0 +1,13 @@
+A byte constant wasn't correctly ended.
+
+Erroneous code example:
+
+```compile_fail,E0763
+let c = b'a; // error!
+```
+
+To fix this error, add the missing quote:
+
+```
+let c = b'a'; // ok!
+```