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

Lines Matching full:note

7 //   ill-formed. [Note: two using-declarations may introduce functions
14 namespace ns { void foo(); } // expected-note {{target of using declaration}}
15 int foo(void); // expected-note {{conflicting declaration}}
20 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 using ns::foo; //expected-note {{using declaration}}
26 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
28 int foo(void); // expected-note {{conflicting declaration}}
33 using ns::foo; //expected-note {{using declaration}}
39 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
42 int foo(void); // expected-note {{conflicting declaration}}
49 using ns::foo; //expected-note {{using declaration}}
56 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
59 int foo(void); // expected-note {{conflicting declaration}}
66 using ns::foo; //expected-note {{using declaration}}