Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
d66b9a222b38d7d29646c582b70a1c107ca615de
/
.
/
test
/
TableGen
/
strconcat.td
blob: 85ee831b4dae6cc918bb1a4449f3e134ccb5f404 [
file
] [
log
] [
blame
]
// 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"
>;