OSDN Git Service

* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / vla2.C
1 // { dg-do compile }
2 // { dg-options "" }
3
4 // Copyright (C) 2003 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>
6
7 // PR 9708. We unified a VLA size as a constant. Then issued bogus
8 // errors.
9
10 template <unsigned int N>
11 char* begin(char (&a) [N] );    // { dg-message "candidate" }
12
13 void bar(int i)
14 {
15   char d[i] ;
16   
17   begin(d);  // { dg-error "no matching function" "" }
18 }