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