summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/type2.C
blob: 49bb8b2d65d0ed51c972252a44b83d00e72c8912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do assemble  }
// 
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 11 April 2001 <nathan@codesourcery.com>
// Origin:stephen.webb@cybersafe.com 

// Bug 2125. TYPE_DECLS never had their DECL_CONTEXT set, which
// confused forward references to classes.

typedef void T;
namespace A {
  class C;
  typedef class C C;
  typedef int T;
  class C
  {
    T i;		// got bogus error, found wrong T
  };
}