// RUN: %clang_cc1 -fsyntax-only -verify %s
; // expected-note 2{{candidate found by name lookup is 'K2'}}
using namespace A;
void // okay
; // expected-error{{reference to 'K2' is ambiguous}}
K2 *k3; // expected-error{{reference to 'K2' is ambiguous}}
;
// PR5479
;
using namespace Alias;
void
extern "C++"
void
// PR7517
using namespace std; // expected-warning{{using directive refers to implicitly-defined namespace 'std'}}
using namespace ::std; // expected-warning{{using directive refers to implicitly-defined namespace 'std'}}