blob: 0173c49365cce29f3def4981352bbf4cb2064374 [file] [log] [blame]
// RUN: llvm-tblgen %s | grep fufoo
class Y<string S> {
string T = !strconcat(S, "foo");
// String values concatenate lexically, as in C.
string S = "foo" "bar";
}
def Z : Y<"fu">;