1// RUN: llvm-tblgen %s2// XFAIL: vg_leak3class A;4class B : A;5 6def b : B;7 8def {9 list<B> X = [b];10 list<A> Y = X;11}12