mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
271 B
Rust
11 lines
271 B
Rust
fn r#fn() {}
|
|
|
|
fn main() {
|
|
let r#final = 1;
|
|
|
|
// Should correctly suggest variable defined using raw identifier.
|
|
fina; //~ ERROR cannot find value
|
|
|
|
// Should correctly suggest function defined using raw identifier.
|
|
f(); //~ ERROR cannot find function
|
|
}
|