/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ // test.C //#include #include class A { public: class B; }; class A::B { public: int b; }; int main() { A::B bb; bb.b = 3; //cerr<