brintos

brintos / llvm-project-archived public Read only

0
0
Text · 157 B · 3a6162b Raw
10 lines · cpp
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