Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / template / arg2.C
blobef84cfdd79a75097264a2d06e01b2229e4b06eb6
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>
6 // PR 9708. We accepted a local class
8 template <typename T> class X {};
10 void fn ()
12   class L {};
13   X<L> f; // { dg-error "uses local type|trying to instantiate|no type|invalid type" "" { target { ! c++11 } } }