view gcc/testsuite/g++.dg/ext/vla2.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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] );	// { dg-message "note" }

void bar(int i)
{
  char d[i] ;
  
  begin(d);  // { dg-error "no matching function" }
  // { dg-message "(candidate|valid template argument)" "candidate note" { target *-*-* } .-1 }
}