blob: a2256a89d11cf335bae1e5af18d7a5a4aca187f4 [file] [log] [blame]
Argyrios Kyrtzidis706bbf82010-10-29 16:12:50 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Argyrios Kyrtzidis706bbf82010-10-29 16:12:50 +00002
3namespace A {
Richard Smithfc805ca2015-07-06 04:43:58 +00004 class String; // expected-note {{target of using declaration}}
Argyrios Kyrtzidis706bbf82010-10-29 16:12:50 +00005};
6
Richard Smithfc805ca2015-07-06 04:43:58 +00007using A::String; // expected-note {{using declaration}}
8class String; // expected-error {{conflicts with target of using declaration}}
Argyrios Kyrtzidis706bbf82010-10-29 16:12:50 +00009
10// rdar://8603569
11union value {
12char *String;
13};