Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
bd4c4aebe6035e7a7125470cc9f0f92511230ee3
/
.
/
test
/
SemaCXX
/
template-specialization.cpp
blob: 963dccaccd18679e1cd14dcc9d29896a9c06aa55 [
file
] [
log
] [
blame
]
// RN: clang-cc -fsyntax-only -verify %s
// RUN: false
// XFAIL
template
<
int
N
>
void
f
(
int
(&
array
)[
N
]);
template
<>
void
f
<
1
>(
int
(&
array
)[
1
])
{
}