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

pub struct A<T>(T);
pub struct B<T>(T);

pub fn foo(_: A<B<i32>>) {}