OSDN Git Service

2009-02-02 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / anonymous-namespace-1.C
1 // Test for the warning of exposing types from an anonymous namespace
2 // { dg-do compile }
3
4 #include "anonymous-namespace-1.h"
5
6 namespace {
7  class good { };
8 }
9
10 class foo::bar : public good { }; 
11 class foobar1
12 {
13   good g;
14 };
15
16 #line 17 "foo.C"
17 class foobar : public bad { }; // { dg-warning "uses the anonymous namespace" }
18 class foobar2 { bad b; }; // { dg-warning "uses the anonymous namespace" }