]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2457/idents-normalized.rs
Rollup merge of #88313 - jyn514:pre-push, r=Mark-Simulacrum
[rust.git] / src / test / 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 }