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:
parent
0bfde48763
commit
d594521294
3 changed files with 8 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
/* { dg-do compile } */
|
||||
/* Another conflict between namespace IDs and other things. */
|
||||
|
||||
namespace A { };
|
||||
namespace A { }
|
||||
|
||||
class B {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue