Skip to content

Commit 541d879

Browse files
committed
Add a test and bless existing test case.
1 parent 0bcddfe commit 541d879

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/test/ui/codemap_tests/unicode_2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ LL | let _ = ("아あ", 1i42);
1414
|
1515
= help: valid widths are 8, 16, 32, 64 and 128
1616

17-
error[E0425]: cannot find value `a̐é` in this scope
17+
error[E0425]: cannot find value `a̐é` in this scope
1818
--> $DIR/unicode_2.rs:6:13
1919
|
2020
LL | let _ = a̐é;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// check-pass
2+
#![feature(non_ascii_idents)]
3+
4+
struct Résumé; // ['LATIN SMALL LETTER E WITH ACUTE']
5+
6+
fn main() {
7+
let _ = Résumé; // ['LATIN SMALL LETTER E', 'COMBINING ACUTE ACCENT']
8+
}

0 commit comments

Comments
 (0)