Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / crash1.C
bloba500da18bde830497f47afe055fc2e22451baf11
1 // { dg-do compile }
3 // Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Dec 2001 <nathan@codesourcery.com>
6 // PR 5125. ICE
8 class S
10   public:
11   template <class I> void Foo(int (*f)(S& o) ); 
14 template <class I>
15 void S::Foo(int (*f)(TYPO&o) ) // { dg-error "Foo|f|TYPO|o" }
16