// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
// <rdar://problem/8296180>
typedef int pid_t;
namespace ns {
}
using namespace ns;
pid_t x;
struct A { };
typedef ::A A;
A a;