Home | History | Annotate | Download | only in namespace.udecl

Lines Matching refs:ns

16   namespace ns { void foo(); } // expected-note {{target of using declaration}}
18 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
22 namespace ns { void foo(); } // expected-note {{target of using declaration}}
23 using ns::foo; //expected-note {{using declaration}}
28 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
31 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
35 using ns::foo; //expected-note {{using declaration}}
41 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
45 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
51 using ns::foo; //expected-note {{using declaration}}
58 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
62 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
68 using ns::foo; //expected-note {{using declaration}}
76 namespace ns { void foo(int); }
80 using ns::foo;
86 using ns::foo;
96 namespace ns { void foo(); } // expected-note {{target of using declaration}}
97 using ns::foo; // expected-note {{using declaration}}
98 namespace ns {