(root)/
gcc-13.2.0/
gcc/
testsuite/
obj-c++.dg/
method-namespace-2.mm
/* Test that qualified type is resolved to its proper type. */
/* { dg-do compile } */

@interface  Object 
{
	int I[100];
}
@end

namespace HC
{

struct Object
{
    void test();
}; 

} // namespace HC

int main()
{
    HC::Object* object;
    object->test();	// Must compile with no error
    return 0;
}