minix/external/bsd/llvm/dist/clang/test/SemaCXX/tag-ambig.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

29 lines
448 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
// <rdar://problem/9168556>
typedef struct Point Point;
namespace NameSpace {
class Point;
}
using namespace NameSpace;
class Test
{
public:
struct Point { };
virtual bool testMethod (Test::Point& p) = 0;
};
// PR8151
namespace A { struct Face {}; }
namespace B { struct Face {}; }
using namespace A;
using namespace B;
class C {
struct Face;
Face *mFaces;
};