mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-28 17:06:31 +00:00
11 lines
97 B
TableGen
11 lines
97 B
TableGen
![]() |
// RUN: tblgen %s
|
||
|
class A;
|
||
|
class B : A;
|
||
|
|
||
|
def b : B;
|
||
|
|
||
|
def {
|
||
|
list<B> X = [b];
|
||
|
list<A> Y = X;
|
||
|
}
|