aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/parse1.C
blob: cbac6da1559b6d071c3ef2dc2f9a5956a88f36c6 (plain)
1
2
3
4
5
6
7
8
9
/* PR c++/50 */
/* { dg-do compile } */

namespace A {typedef int Z;}
int main(void)
{
  A::Z* z;
  z->A::Z::~Z();
}