2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / error2.C
blob36089e4b5b5dc07364470129d46af22ead2ecab1
1 // { dg-do compile }
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 26 Dec 2001 <nathan@nathan@codesourcery.com>
6 // PR 196. Misleading diagnostic
8 namespace N
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 { }