blob: c17dc860910cd37b86f44347177c3ea6294fc3f0 [file] [log] [blame]
// { dg-do compile }
// { dg-options "" }
// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>
// PR 9708. We unified a VLA size as a constant. Then issued bogus
// errors.
template <unsigned int N>
char* begin(char (&a) [N] );
void bar(int i)
{
char d[i] ;
begin(d); // { dg-error "no matching function" "" }
}