1 // { dg-do compile }
2 
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>
5 
6 // PR 9708. We accepted a local class
7 
8 template <typename T> class X {};
9 
fn()10 void fn ()
11 {
12   class L {};
13   X<L> f; // { dg-error "uses local type|trying to instantiate|no type|invalid type" "" { target { ! c++11 } } }
14 }
15