YouCompleteMe/cpp/llvm/test/TableGen/strconcat.td
2012-07-05 17:51:06 -07:00

12 lines
208 B
TableGen

// RUN: llvm-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">;