Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
47e60ac311d03a5813da70dd894b503d1c5c7c95
/
.
/
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
])
{
}