llvm-for-llvmta/test/TableGen/ListConversion.td

12 lines
120 B
TableGen
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
// RUN: llvm-tblgen %s
// XFAIL: vg_leak
class A;
class B : A;
def b : B;
def {
list<B> X = [b];
list<A> Y = X;
}