OSDN Git Service

2007-03-22 Dirk Mueller <dmueller@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / access9.C
1 // PR c++/24782
2
3 class Foo { public:  typedef int type1; };
4 class Bar { private: typedef Foo type2; }; // { dg-error "private" } 
5 void g(Bar::type2::type1) {} // { dg-error "context" }