We don't care if TableGen leaks memory.
[oota-llvm.git] / test / TableGen / strconcat.td
index cdf3928f04d659ec270789830896b84ab2e6c836..38409a99dc4e6afc18b6e15f9ab208f87d0985fd 100644 (file)
@@ -1,7 +1,11 @@
 // 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">;