struct A<T, 'a> {
t: &'a T,
}
struct B<T, 'a, U> {
u: U,
struct C<T, U, 'a> {
struct D<T, U, 'a, 'b, V, 'c> {
u: &'b U,
v: &'c V,
fn main() {}