summaryrefslogtreecommitdiffstats
path: root/tests/ui/generics/issue-79605.rs
blob: 6f4c31e57a3745e985e9c4576f1a9813e9071f95 (plain)
1
2
3
4
5
6
struct X<'a, T>(&'a T);

impl X<'_, _> {}
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for implementations

fn main() {}