view gcc/testsuite/g++.dg/template/using17.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

// 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();
}