mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
90172ab0b5
green. llvm-svn: 113491
17 lines
268 B
TableGen
17 lines
268 B
TableGen
// RUN: tblgen %s
|
|
// XFAIL: vg_leak
|
|
|
|
class Bla<string t>
|
|
{
|
|
string blu = t;
|
|
}
|
|
|
|
class Bli<Bla t>
|
|
{
|
|
Bla bla = t;
|
|
}
|
|
|
|
def a : Bli<Bla<"">>;
|
|
def b : Bla<!cast<Bla>(a.bla).blu>; // works
|
|
def c : Bla<a.bla.blu>; // doesn't work: Cannot access field 'blu' of value 'a.bla'
|