rust/tests/ui/rfc-2457/idents-normalized.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
164 B
Rust
Raw Normal View History

// check-pass
struct Résumé; // ['LATIN SMALL LETTER E WITH ACUTE']
fn main() {
let _ = Résumé; // ['LATIN SMALL LETTER E', 'COMBINING ACUTE ACCENT']
}