dfb1a94d82c8b25767f2f1d8770ad4fa51995966
[oota-llvm.git] / test / TableGen / strconcat.td
1 // RUN: llvm-tblgen %s | FileCheck %s
2
3 // CHECK: fufoo
4
5 class Y<string S> {
6   string T = !strconcat(S, "foo");
7
8   // String values concatenate lexically, as in C.
9   string S = "foo" "bar";
10 }
11
12 def Z : Y<"fu">;