You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
// <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;
|