[Orc] Remote the <unistd> include introduced in r257305 - it's not needed, and
[oota-llvm.git] / test / TableGen / ListConversion.td
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 }