blob: aed765dc55de80f1c26b1ec5a0816821b111e8db [file] [log] [blame]
// 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
}