about summary refs log tree commit diff
path: root/tests/ui/span/suggestion-raw-68962.rs
blob: 0b581308f6628ba60b70e7ffdf46dfed87187ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
}