• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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);
9