Sign in
swiftshader
/
SwiftShader
/
c80eada522546e50c736fa948e0a861148d94a3e
/
.
/
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"
>;