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