summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/typename19.C
blob: 5733c9b5b2faecbd8e967eecf98f10837388f832 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// { dg-do run  }
// { dg-options "" }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T>
struct O {
  typedef char X;
};

template <class T>
struct S {
  typedef double X;

  template <class U>
  struct I : public O<U> {
    static X x;
  };
};

template <class T>
template <class U>
typename S<T>::X S<T>::I<U>::x;

int main()
{
  return sizeof (S<int>::I<double>::x) == 1;
}