view gcc/testsuite/g++.dg/template/using17.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR c++/14258
// { dg-do run }

template<typename T>
struct A 
{
  typedef T type;
  typedef A type2;
};
                                                                               
template<typename T>
struct B : A<T> 
{
  using typename A<T>::type;
  type t;

  using typename A<T>::type2;

  type f()
  {
    type i = 1;
    return i;
  }
};

int main()
{
  B<int>::type t = 4;
  if (t != 4)
    __builtin_abort();

  B<double> b;
  b.t = 3;
  if (b.t != 3)
    __builtin_abort();

  B<long> b2;
  if (b2.f() != 1)
    __builtin_abort();

  B<double>::type2::type tt = 12;
  if (tt != 12)
    __builtin_abort();
}