repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
TableGen
/
strconcat.td
blob
fc0d80596c92584ddeb068288c85f4aea5e1d0ca
1
// RUN: tblgen %s | grep fufoo
2
3
class Y<string S> {
4
string T = !strconcat(S, "foo");
5
6
// String values concatenate lexically, as in C.
7
string S = "foo" "bar";
8
}
9
10
def Z : Y<"fu">;