[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / ListConversion.td
blob29b87795bee525e7e69ffa8d77a8a565e5f7b3df
1 // RUN: llvm-tblgen %s
2 // XFAIL: vg_leak
3 class A;
4 class B : A;
6 def b : B;
8 def {
9   list<B> X = [b];
10   list<A> Y = X;