Home | History | Annotate | Download | only in TableGen
      1 // RUN: llvm-tblgen %s | grep fufoo
      2 
      3 class Y<string S> {
      4   string T = !strconcat(S, "foo");
      5 
      6   // String values concatenate lexically, as in C.
      7   string S = "foo" "bar";
      8 }
      9 
     10 def Z : Y<"fu">;
     11