Sign in
chromium
/
external
/
github.com
/
llvm-mirror
/
llvm
/
refs/heads/release_32
/
.
/
test
/
TableGen
/
strconcat.td
blob: 85ee831b4dae6cc918bb1a4449f3e134ccb5f404 [
file
] [
log
] [
blame
] [
edit
]
// RUN: llvm-tblgen %s | grep fufoo
// XFAIL: vg_leak
class
Y
<
string
S
>
{
string
T
=
!
strconcat
(
S
,
"foo"
);
// String values concatenate lexically, as in C.
string
S
=
"foo"
"bar"
;
}
def
Z
:
Y
<
"fu"
>;