aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-12-27 12:12:14 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-12-27 12:12:14 +0000
commit55ab0c602e391537f5e1a84a617fdd817e6a4200 (patch)
tree3adb0077bd7d7a34376d87cbb0ae7ea5b942d532 /crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs
parentdbf03b674e7e1a49d9b32ec5ed656df2aedd3ed3 (diff)
parent49b0fe20ab6aa752df3764908b7c21f4b1827e52 (diff)
Merge #339
339: Fix assertion error for literals with suffixes r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs b/crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs
new file mode 100644
index 000000000..261aad1fb
--- /dev/null
+++ b/crates/ra_syntax/tests/data/parser/err/0030_string_suffixes.rs
@@ -0,0 +1,6 @@
1fn main() {
2 let _ = 'c'u32;
3 let _ = "string"invalid;
4 let _ = b'b'_suff;
5 let _ = b"bs"invalid;
6}