]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/overload/error2.C
re PR c++/22604 (ICE after invalid covariant return)
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / overload / error2.C
1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 18 Oct 2005 <nathan@codesourcery.com>
3
4 // PR 22604
5 // Origin: Volker Reichelt <reichelt@gcc.gnu.org>
6
7 struct A
8 {
9 void foo(); // { dg-error "with" "" }
10 virtual void foo(); // { dg-error "cannot be overloaded" "" }
11 };