OSDN Git Service

* g++.old-deja/g++.pt/static11.C: Add xtensa-*-elf* to the
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp86.C
1 // Build don't link:
2 // crash test - XFAIL *-*-*
3
4 // by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
5 // Copyright (C) 1999 Free Software Foundation
6
7 class Q {
8         template<class>
9         class X {
10         };
11 };
12 template<template<class> class>
13 class Y {
14 };
15 Y<typename Q::X> y; // ERROR - typename out of template context
16