xref: /llvm-project/llvm/test/TableGen/ListConversion.td (revision 7f7f2e9b762c1765568d1084c22f8549715e7c16)
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