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