aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/injected-ttp.C
blob: 5ef4a4ec4f1e5404602ef769314a4c44fc9515c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test for doing the right thing with injected-class-name used as template
// type argument.  This is an extension from DR 176.

// { dg-options "-pedantic -std=c++98" }

template <class T>
struct A { };

template <template <class> class TTP>
struct B { };

struct C: A<int>
{
  B<A> b;			// { dg-warning "injected-class-name" }
};