aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/vla2.C
blob: c17dc860910cd37b86f44347177c3ea6294fc3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { 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" "" }
}