1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/TableGen/ListConversion.td
2011-10-06 13:39:59 +00:00

12 lines
120 B
TableGen

// RUN: llvm-tblgen %s
// XFAIL: vg_leak
class A;
class B : A;
def b : B;
def {
list<B> X = [b];
list<A> Y = X;
}