aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/typedef1.C
blob: 270adcdc9840d0406930ba303351910416ef1465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do compile }

// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 9 Dec 2001 <nathan@nathan@codesourcery.com>

// PR 72

template <typename T> struct A
{
  typedef T type;
};

template <typename T> struct B
{
  typedef int xxx; // { dg-message "" }
  typedef T xxx; // { dg-error "" }
  typedef typename A<T>::type xxx; // { dg-error "" }
  typedef A<int>::type xxx; // { dg-error "" }
};

B<int> good;