aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/typename14.C
blob: 7e73cb0f3ad525177925ce13d1c1de790aa578d8 (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
// { dg-do compile }

// Copyright (C) 2007 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Jul 2007 <nathan@codesourcery.com>

template <typename T> struct A  
{
  typedef const T X;
  
  struct B;
};

template <typename T> struct A<T>::B
{
  typedef volatile typename A<T>::X Y;

  T const volatile *Foo ();
};

template<typename T>
typename A<T>::B::Y *A<T>::B::Foo ()
{
  return 0;
}