aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/nested_generic.rs
blob: 6c3109957f90b1fc0456a9f541ce8981cd511f64 (plain)
1
2
3
4
pub struct A<T>(T);
pub struct B<T>(T);

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