about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/where-clause.rs
blob: c03d04d5fee5030ad6b804dbcf7f9f8a1e573d48 (plain)
1
2
3
4
5
6
7
8
fn code<T>() -> u8
wheree
//~^ ERROR expected one of
    T: Debug,
{
}

fn main() {}