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