rust/tests/ui/parser/issues/issue-88818.rs
2023-01-11 09:32:08 +00:00

11 lines
254 B
Rust

// Regression test for #88818 (improve error message for missing trait
// in `impl for X`).
struct S { }
impl for S { }
//~^ ERROR: missing trait in a trait impl
//~| HELP: add a trait here
//~| HELP: for an inherent impl, drop this `for`
fn main() {}