1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4// PR60765void f();6void (&g)() = (void(), f);7 8int a[1];9int (&b)[1] = (void(), a);10