about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/let.rs
blob: 461c3e518db82fddf5edb6d5051711603e1c116f (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    Let a = 10;
    //~^ ERROR expected one of
}

fn code() {
    lett a = 10;
    //~^ ERROR expected one of
}