blob: ceefc5d2c6a3e51fdb8126746027cb201b8a6341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
struct Foo<A, B>(A, B);
impl<T> Foo<i32, T> {
fn test(a: T) -> T {
a
}
}
impl Foo<i32, f32> {
fn test() -> f32 { // { dg-error "duplicate definitions with name test" }
123f32
}
}
fn main() {}
|