Sign in
ara-mdk
/
platform
/
external
/
llvm
/
770772e831d1ff1dfbc0e94fb3212437e597d7a5
/
.
/
test
/
TableGen
/
strconcat.td
blob: 38409a99dc4e6afc18b6e15f9ab208f87d0985fd [
file
] [
log
] [
blame
]
// RUN: 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"
>;