Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
1e821e9eba7c48f375c7cb5c9e19c489e17ec58a
/
.
/
test
/
SemaCXX
/
comma.cpp
blob: 79ff7d1cde251f01076c2ebf814717049451b5fd [
file
] [
log
] [
blame
]
Douglas Gregor
a873dfc
2010-02-03 00:27:59 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
// PR6076
4
void
f
();
5
void
(&
g
)()
=
(
void
(),
f
);
6
7
int
a
[
1
];
8
int
(&
b
)[
1
]
=
(
void
(),
a
);