blob: dfb1a94d82c8b25767f2f1d8770ad4fa51995966 [file] [log] [blame]
Bill Wendlingb4be7f62013-08-22 20:46:05 +00001// RUN: llvm-tblgen %s | FileCheck %s
2
3// CHECK: fufoo
Chris Lattnerfd2ae972006-03-31 21:53:01 +00004
5class Y<string S> {
6 string T = !strconcat(S, "foo");
Chris Lattnerd7a50cf2009-03-11 17:08:13 +00007
8 // String values concatenate lexically, as in C.
9 string S = "foo" "bar";
Chris Lattnerfd2ae972006-03-31 21:53:01 +000010}
11
12def Z : Y<"fu">;