aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/nested7.C
blob: 43cce23854682aeff66cf811e68c1164d0e418aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Testcase for defining nested types separately.
// Build don't link:

class remote
{
  class remote_file;
};

class remote::remote_file
{
public:
  ~remote_file();
};

remote::remote_file::~remote_file()
{}