mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
15 lines
249 B
TableGen
15 lines
249 B
TableGen
|
// RUN: tblgen %s
|
||
|
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'
|