summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/generics23.rs
blob: 2169e3649c61a7cb343e5693d327a3649c271d7d (plain)
1
2
3
4
5
6
struct Foo<A = f32>(A);

fn main() {
    let a: Foo;
    a = Foo(123f32);
}