Clang Project

clang_source_code/test/SemaCXX/comma.cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s
2// expected-no-diagnostics
3
4// PR6076
5void f();
6void (&g)() = (void(), f);
7
8int a[1];
9int (&b)[1] = (void(), a);
10