3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 26 Mar 2003 <nathan@codesourcery.com>
6 // PR 10158. implicit inline template friends ICE'd
8 template <int N> struct X
10 template <int M> friend int foo(X const &)
18 return foo<5678> (bring) != 12345678;