blob: a05dbaebb71df24af952ab2b626e27192b187519 [file] [log] [blame]
Douglas Gregor00aeb522009-07-08 23:33:52 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3template<typename T> T f0(T);
4int f0(int); // expected-note{{candidate function}}
5
6void test_f0() {
7 int (*fp0)(int) = f0;
8 int (*fp1)(int) = &f0;
9 float (*fp2)(float) = &f0;
10}
11
12namespace N {
13 int f0(int); // expected-note{{candidate function}}
14}
15
16int f0(int);
17
18void test_f0_2() {
19 using namespace N;
20 int (*fp0)(int) = f0; // expected-error{{ambiguous}} \
21 // expected-error{{initializing}}
22 float (*fp1)(float) = f0;
23}