blob: 391115ddc6dc9edb01f608b414995c453e5417ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// { dg-do compile }
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 26 Dec 2001 <nathan@nathan@codesourcery.com>
// PR 196. Misleading diagnostic
namespace N
{
class B { friend void operator>>(int, class B); };
class N { friend void operator>>(int,class N); };
}
void N::operator>>(int, N::B) // { dg-error "`B' is not a member of|non-function|primary-expression" "" }
{ } // { dg-error "" "" }
|