* g++.dg/parse/parse1.C: New test.

From-SVN: r60723
This commit is contained in:
Neil Booth 2003-01-01 00:13:48 +00:00
parent 9f17a7afd2
commit 2010d38458

View File

@ -0,0 +1,9 @@
/* PR c++/50 */
/* { dg-do compile } */
namespace A {typedef int Z;}
int main(void)
{
A::Z* z;
z->A::Z::~Z();
}