1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 12 Oct 2005 <nathan@codesourcery.com>
3 
4 // PR 23797:ICE
5 // Origin:  Volker Reichelt <reichelt@gcc.gnu.org>
6 
7 // { dg-options "-fpermissive -w" }
8 
9 struct A { typedef int X; };
10 
11 int i = typename A::X();
12