aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/generics8.rs
blob: 99df0c9b58cc64c5937e737310f652c509f96e39 (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() {}