// Verify issue 0133 corner case, make sure that when a namespace // has been declared more than once, all of the related documentation // is generated correctly. /** * First declaration with a comment. */ namespace test62 { /** The x coordinate. */ int x = 0; } // No comment. namespace test62 { /** The y coordinate. */ int y = 0; } /** * Second declaration with a comment. */ namespace test62 { /** The z coordinate. */ int z = 0; }