view gcc/testsuite/g++.dg/template/typename14.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { 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;
}