]> git.lizzy.rs Git - rust.git/blob - tests/ui/rfc-2457/idents-normalized.rs
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / ui / rfc-2457 / idents-normalized.rs
1 // check-pass
2
3 struct Résumé; // ['LATIN SMALL LETTER E WITH ACUTE']
4
5 fn main() {
6     let _ = Résumé; // ['LATIN SMALL LETTER E', 'COMBINING ACUTE ACCENT']
7 }