Files
rust/tests/ui/parser/misspelled-keywords/where-clause.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
85 B
Rust
Raw Normal View History

2024-09-01 22:27:43 -04:00
fn code<T>() -> u8
wheree
//~^ ERROR expected one of
T: Debug,
{
}
fn main() {}