1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/TableGen/ListConversion.td

11 lines
97 B
TableGen
Raw Normal View History

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