aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/generics12.rs
blob: b32f56679caf3c7204cc4de56b673ff96a2eb0cc (plain)
1
2
3
4
5
6
7
8
9
#[lang = "sized"]
pub trait Sized {}

fn main() {
    bar();
    // { dg-error "type annotations needed" "" { target *-*-* } .-1 }
}

fn bar<T>() {}