(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
complit14.C
// PR c++/61614
// { dg-options "" }

int Fn (...);

void
Test ()
{
  int j = Fn ((const int[]) { 0 });                    // OK
  unsigned long sz = sizeof Fn ((const int[]) { 0 });  // Error
}