45fc842ed9
Otherwise the suggestions can be off-base for non-ASCII identifiers. For example suggesting that `Ok` is a name similar to `读文`.
5 lines
152 B
Rust
5 lines
152 B
Rust
fn main() {
|
|
// There shall be no suggestions here. In particular not `Ok`.
|
|
let _ = 读文; //~ ERROR cannot find value `读文` in this scope
|
|
}
|