aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/template3.C
blob: e03b8a9ab35beeb050d78a5c49eee72b0b64ff36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PRMS Id: 4679
// Bug: g++ doesn't re-instantiate templates after definition is seen.

template <class T> struct A;

A<int> *a;

template <class T> struct A { T t; };

main()
{
  if (a)
    a->t = 1;			// gets bogus error
}