Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
5ad5f15cffe022de72d0e710714f852ad8a1c6fe
/
.
/
llvm
/
test
/
TableGen
/
strconcat.td
blob: dfb1a94d82c8b25767f2f1d8770ad4fa51995966 [
file
] [
log
] [
blame
]
// RUN: llvm-tblgen %s | FileCheck %s
// CHECK: fufoo
class
Y
<
string
S
>
{
string
T
=
!
strconcat
(
S
,
"foo"
);
// String values concatenate lexically, as in C.
string
S
=
"foo"
"bar"
;
}
def
Z
:
Y
<
"fu"
>;