rust/tests/ui/suggestions/non_ascii_ident.rs

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

8 lines
294 B
Rust
Raw Normal View History

fn main() {
// There shall be no suggestions here. In particular not `Ok`.
let _ = ; //~ ERROR cannot find value `读文` in this scope
let f = 0f32; // Important line to make this an ICE regression test
(f); //~ ERROR cannot find function `读文` in this scope
}