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