re PR c++/9829 (Missing colon in nested namespace usage causes ICE)

PR c++/9829
	* g++.dg/parse/namespace6.C: New test.

From-SVN: r63452
This commit is contained in:
Mark Mitchell 2003-02-26 05:26:50 +00:00 committed by Mark Mitchell
parent 8ace9f18b7
commit c0b1cc97a4
2 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-02-25 Mark Mitchell <mark@codesourcery.com>
PR c++/9829
* g++.dg/parse/namespace6.C: New test.
2003-02-25 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
PR target/9732

View File

@ -0,0 +1,10 @@
namespace a {
namespace b {
void foo();
}
}
void
a::b:foo() // { dg-error "" }
{
}