aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/debug/typedef2.C
blob: a216242c7bc390c7b68ec74a26aee1b18f616e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/17695

template<typename T> struct A
{
  T t;
  A();
};

struct B
{
  B() { typedef int C; A<C> a; }
} b;