Sign in
swiftshader
/
SwiftShader
/
f9350d76a9830658aed2bdb3aa11532a40ab1928
/
.
/
third_party
/
LLVM
/
test
/
TableGen
/
strconcat.td
blob: cec0e49d741df52c4ded109a043499b37721ad0a [
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"
>;