new testcase.
[oota-llvm.git] / test / TableGen / strconcat.td
1 // RUN: tblgen %s | grep fufoo
2
3 class Y<string S> {
4   string T = !strconcat(S, "foo");
5 }
6
7 def Z : Y<"fu">;