// RUN: %clang_cc1 -std=c++20 -fsyntax-only %s -pedantic -verify
using NS::x ;
using NS::x ; // expected-warning{{ISO C++ does not allow an attribute list to appear here}}
// expected-warning{{ISO C++ does not allow an attribute list to appear here}}
using NS::not_there,
NS::not_there2;
using NS::not_there3, // expected-error {{no member named 'not_there3' in namespace 'NS'}}
NS::not_there4 ; // expected-warning{{C++ does not allow an attribute list to appear here}}
using NS::not_there5 ; // expected-warning 2 {{ISO C++ does not allow}}
;
;