namespace3.C: Remove extra semicolons.

* g++.dg/parse/namespace3.C: Remove extra semicolons.
	* g++.dg/parse/namespace4.C: Likewise.

From-SVN: r60880
This commit is contained in:
Kriang Lerdsuwanakij 2003-01-04 14:30:59 +00:00 committed by Kriang Lerdsuwanakij
parent 0bfde48763
commit d594521294
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-01-04 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* g++.dg/parse/namespace3.C: Remove extra semicolons.
* g++.dg/parse/namespace4.C: Likewise.
2003-01-03 Nathan Sidwell <nathan@codesourcery.com>
* g++.dg/template/ntp2.C: New test.

View File

@ -1,6 +1,6 @@
/* PR c+/3816 */
/* { dg-do compile } */
namespace A {};
namespace A {}
namespace OtherNamespace {
@ -8,5 +8,5 @@ namespace OtherNamespace {
int member;
} A; // used to conflict with A namespace
}; // end of namespace
} // end of namespace

View File

@ -2,7 +2,7 @@
/* { dg-do compile } */
/* Another conflict between namespace IDs and other things. */
namespace A { };
namespace A { }
class B {