1 // { dg-do compile }
2 
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 26 Dec 2001 <nathan@nathan@codesourcery.com>
5 
6 // PR 196. Misleading diagnostic
7 
8 namespace N
9 {
10   class B { friend void operator>>(int, class B); };
11   class N { friend void operator>>(int,class N); };
12 }
13 void N::operator>>(int, N::B)  // { dg-error "N::N::B|N::operator>>" }
14 { }
15