• Home
  • Raw
  • Download

Lines Matching refs:foo

14   namespace ns { void foo(); } // expected-note {{target of using declaration}}
15 int foo(void); // expected-note {{conflicting declaration}}
16 …using ns::foo; // expected-error {{target of using declaration conflicts with declaration already …
20 namespace ns { void foo(); } // expected-note {{target of using declaration}}
21 using ns::foo; //expected-note {{using declaration}}
22 …int foo(void); // expected-error {{declaration conflicts with target of using declaration already …
26 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
28 int foo(void); // expected-note {{conflicting declaration}} in test0()
29 …using ns::foo; // expected-error {{target of using declaration conflicts with declaration already … in test0()
33 using ns::foo; //expected-note {{using declaration}} in test1()
34 …int foo(void); // expected-error {{declaration conflicts with target of using declaration already … in test1()
39 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
42 int foo(void); // expected-note {{conflicting declaration}} in test()
43 …using ns::foo; // expected-error {{target of using declaration conflicts with declaration already … in test()
49 using ns::foo; //expected-note {{using declaration}} in test()
50 …int foo(void); // expected-error {{declaration conflicts with target of using declaration already … in test()
56 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}}
59 int foo(void); // expected-note {{conflicting declaration}} in test()
60 …using ns::foo; // expected-error {{target of using declaration conflicts with declaration already … in test()
66 using ns::foo; //expected-note {{using declaration}} in test()
67 …int foo(void); // expected-error {{declaration conflicts with target of using declaration already … in test()
74 namespace ns { void foo(int); }
77 int foo(T); in test() local
78 using ns::foo; in test()
84 using ns::foo; in test()
85 int foo(T); in test() local