aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/array9.C
blob: c2c2d79b95e434cce5d89e4bd92f81b93e92c163 (plain)
1
2
3
4
5
6
// { dg-do assemble  }

template <class T> class A {
  T *d;
  public: void f() { (T[10])d; }
};