llvm-project/llvm/test/TableGen/ListConversion.td

11 lines
97 B
TableGen
Raw Normal View History

2003-08-04 02:28:09 +08:00
// RUN: tblgen %s
class A;
class B : A;
def b : B;
def {
list<B> X = [b];
list<A> Y = X;
}