Merge branch 'master' into msp430
[llvm/msp430.git] / test / TableGen / strconcat.td
blobfc0d80596c92584ddeb068288c85f4aea5e1d0ca
1 // RUN: tblgen %s | grep fufoo
3 class Y<string S> {
4   string T = !strconcat(S, "foo");
6   // String values concatenate lexically, as in C.
7   string S = "foo" "bar";
10 def Z : Y<"fu">;