// { dg-do compile } // { dg-options "" } // Copyright (C) 2003 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 21 Mar 2003 // PR 9708. We unified a VLA size as a constant. Then issued bogus // errors. template char* begin(char (&a) [N] ); // { dg-message "candidate" } void bar(int i) { char d[i] ; begin(d); // { dg-error "no matching function" "" } }