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