aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/nested3.C
blob: 783caadd285715d3bd15c26b9bc395ecc768b9ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link:
// Origin: Chip Salzenberg <chip@perlsupport.com>

class Foo {
  public:
    class Bar;
};

class Foo::Bar {
  public:
    Bar() {}
};