mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
12 lines
271 B
Rust
12 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
|
|
}
|