Home | History | Annotate | Download | only in TableGen

Lines Matching full:bla

4 class Bla<string t>
9 class Bli<Bla t>
11 Bla bla = t;
14 def a : Bli<Bla<"">>;
15 def b : Bla<!cast<Bla>(a.bla).blu>; // works
16 def c : Bla<a.bla.blu>; // doesn't work: Cannot access field 'blu' of value 'a.bla'