brintos

brintos / llvm-project-archived public Read only

0
0
Text · 241 B · 795958e Raw
11 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// RUN: %clang_cc1 -fsyntax-only -verify %s -fexperimental-new-constant-interpreter3// expected-no-diagnostics4 5// PR60766void f();7void (&g)() = (void(), f);8 9int a[1];10int (&b)[1] = (void(), a);11