blob: 2f594b48e697f2b0e0ef0b4c11bcdb9fce8a031e [file] [log] [blame]
// check-pass
struct S<T> {
t : T,
s : Box<S<fn(u : T)>>
}
fn f(x : S<u32>) {}
fn main () {}