blob: 4cb91cdf0021fd7ee72c81b1b057a980ab49697f [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// <rdar://problem/8296180>
typedef int pid_t;
namespace ns {
typedef int pid_t;
}
using namespace ns;
pid_t x;
struct A { };
namespace ns {
typedef ::A A;
}
A a;