aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/generics8.rs
blob: 88c4bac1b076a73adaae2becdd5d7289dc881331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[lang = "sized"]
pub trait Sized {}

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() {}