]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.dg/other/error2.C
* c-common.h (c_parse_error): Declare it.
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / other / error2.C
CommitLineData
a87b92f2 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
8namespace N
9{
10 class B { friend void operator>>(int, class B); };
11 class N { friend void operator>>(int,class N); };
12}
92b128ed 13void N::operator>>(int, N::B) // { dg-error "N::N::B" }
a87b92f2 14{ } // { dg-error "" "" }