Sign in
llvm
/
llvm-project
/
clang
/
e3884de8cec1b4b0c858cbbafae4dd85efa48fb6
/
.
/
test
/
SemaCXX
/
template-specialization.cpp
blob: b3bb08d7e6a21172d55efe1f872d6b07464f25a8 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
template
<
int
N
>
void
f
(
int
(&
array
)[
N
]);
template
<>
void
f
<
1
>(
int
(&
array
)[
1
])
{
}