mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 00:24:03 -04:00
10 lines
157 B
C++
10 lines
157 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
// PR6076
|
|
void f();
|
|
void (&g)() = (void(), f);
|
|
|
|
int a[1];
|
|
int (&b)[1] = (void(), a);
|