rust/tests/ui/generics/issue-79605.rs

7 lines
154 B
Rust
Raw Normal View History

2023-04-15 17:17:46 +05:30
struct X<'a, T>(&'a T);
impl X<'_, _> {}
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for implementations
fn main() {}