blob: 0173c49365cce29f3def4981352bbf4cb2064374 [file] [log] [blame]
Peter Collingbourne5d5c0622011-10-06 13:39:59 +00001// RUN: llvm-tblgen %s | grep fufoo
Chris Lattnerfd2ae972006-03-31 21:53:01 +00002
3class Y<string S> {
4 string T = !strconcat(S, "foo");
Chris Lattnerd7a50cf2009-03-11 17:08:13 +00005
6 // String values concatenate lexically, as in C.
7 string S = "foo" "bar";
Chris Lattnerfd2ae972006-03-31 21:53:01 +00008}
9
10def Z : Y<"fu">;