Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
5cdf82164dd7c2b2320d6735c63ace4331e0716d
/
.
/
test
/
SemaCXX
/
template-specialization.cpp
blob: 5442514abc9a36c7a8ae77a429834431388369d9 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s
template
<
int
N
>
void
f
(
int
(&
array
)[
N
]);
template
<>
void
f
<
1
>(
int
(&
array
)[
1
])
{
}