X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git] / test / TableGen / ListConversion.td
blob773ed6e4d11468bea03263751768fdacb9828d3c
1 // RUN: tblgen %s
2 class A;
3 class B : A;
5 def b : B;
7 def {
8   list<B> X = [b];
9   list<A> Y = X;