aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/memtemp89.C
blob: 1a1b5ea5f9f0c50ab1232014d396187a252079ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }

// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
// Copyright (C) 1999, 2000 Free Software Foundation

class Q {
	template<class T>
	class X {		// { dg-error "" } Q::X private
	};
};
template<template<class> class XX>
class Y {
	XX<int> x_;
};
Y<Q::X> y;			// { dg-error "" } required from here