1 // { dg-do compile }
2 
3 // Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 29 Dec 2001 <nathan@codesourcery.com>
5 
6 // PR 5125. ICE
7 
8 class S
9 {
10   public:
11   template <class I> void Foo(int (*f)(S& o) );
12 };
13 
14 template <class I>
Foo(int (* f)(TYPO & o))15 void S::Foo(int (*f)(TYPO&o) ) // { dg-error "Foo|f|TYPO|o" }
16 {
17 }
18