Home | History | Annotate | Download | only in TableGen
      1 // RUN: llvm-tblgen %s
      2 
      3 class test<code C> {
      4   code Code = C;
      5 }
      6 
      7 def foo : test<[{ hello world! }]>;
      8