summaryrefslogtreecommitdiffstats
path: root/src/test/ui/specialization/min_specialization/repeating_param.rs
blob: 5a1c97fd321a9bd9e8d02e9a3ad4953fba4ab478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test that specializing on two type parameters being equal is not allowed.

#![feature(min_specialization)]

trait X {
    fn f();
}

impl<T> X for T {
    default fn f() {}
}
impl<T> X for (T, T) {
    //~^ ERROR specializing impl repeats parameter `T`
    fn f() {}
}

fn main() {}