aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/nested4.C
blob: 673fa3cb9099749c471c6ed1787f4f3f9edf40a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// { dg-do assemble  }
// 
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 10 Aug 2000 <nathan@codesourcery.com>

// bug 372 We ICE'd on the out-of-class definition of a nested class of a
// class template.

struct Bar
{
};

template <class T>
struct Foo
{
  struct Baz;
  struct Biz;
  struct Boz
  : Bar
  {
  };
};

template <class T>
struct Foo<T>::Biz
{
};

template <class T>
struct Foo<T>::Baz
: Bar
{
};