view gcc/testsuite/g++.dg/ext/flexary14.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
line wrap: on
line source

// PR c++/69349 - template substitution error for flexible array members
// { dg-do compile }

template <class>
struct A;

template <class T>
struct A<T[]> { typedef int X; };

template <class T> int foo (T&, typename A<T>::X = 0) { return 0; }

struct B {
  int n, a[];     // { dg-error "forbids flexible array member" }
};

void bar (B *b)
{
    foo (b->a);
}