view gcc/testsuite/g++.dg/cpp0x/alias-decl-24.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

// Origin: PR c++/53540
// { dg-do compile { target c++11 } }

template <typename T>
struct context
{
  typedef int type;
};

template <typename T>
void function()
{
  using ctx1 = context<T>;
  typename ctx1::type f1;

  typedef context<T> ctx2;
  typename ctx2::type f2;
}

int main()
{
  function<int>();
}