Silence -Wunused-variable in release builds.
[llvm/stm8.git] / test / TableGen / strconcat.td
blob38409a99dc4e6afc18b6e15f9ab208f87d0985fd
1 // RUN: tblgen %s | grep fufoo
2 // XFAIL: vg_leak
4 class Y<string S> {
5   string T = !strconcat(S, "foo");
7   // String values concatenate lexically, as in C.
8   string S = "foo" "bar";
11 def Z : Y<"fu">;