aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-1034.rs
blob: 23d7700545244221232ed6560da7107fe82cba68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
trait Foo<T> {
    type Output;

    fn test(self, slice: &T) -> &Self::Output;
}

struct Bar<T>(T);
// { dg-warning "struct is never constructed" "" { target *-*-* } .-1 }

impl<T> Foo<[T]> for Bar<usize> {
    type Output = [T];

    fn test(self, slice: &[T]) -> &[T] {
        slice
    }
}