blob: 3571fa748b818dedbffb638d7bcb4e636a824648 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Charles Li542f04c2015-11-11 19:34:47 +00002// RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
3// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00004
5class X{
6public:
Douglas Gregor861eb802010-04-25 20:55:08 +00007 enum E {Enumerator}; // expected-note 2{{declared here}}
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00008 int f();
9 static int mem;
10 static float g();
11};
12
13void test(X* xp, X x) {
14 int i1 = x.f();
15 int i2 = xp->f();
Douglas Gregor861eb802010-04-25 20:55:08 +000016 x.E; // expected-error{{cannot refer to type member 'E' in 'X' with '.'}}
17 xp->E; // expected-error{{cannot refer to type member 'E' in 'X' with '->'}}
Douglas Gregor6bd18af2009-01-16 03:02:29 +000018 int i3 = x.Enumerator;
19 int i4 = xp->Enumerator;
Douglas Gregor2eedc3a2008-12-20 23:49:58 +000020 x.mem = 1;
21 xp->mem = 2;
22 float f1 = x.g();
23 float f2 = xp->g();
24}
Douglas Gregor0b08ba42009-03-27 06:00:30 +000025
26struct A {
27 int f0;
28};
29struct B {
30 A *f0();
31};
32int f0(B *b) {
John McCall50a2c2c2011-10-11 23:14:30 +000033 return b->f0->f0; // expected-error{{did you mean to call it with no arguments}}
Douglas Gregor0b08ba42009-03-27 06:00:30 +000034}
Douglas Gregor0b3d95a2009-10-17 22:37:54 +000035
36int i;
37
38namespace C {
39 int i;
40}
41
42void test2(X *xp) {
43 xp->::i = 7; // expected-error{{qualified member access refers to a member in the global namespace}}
44 xp->C::i = 7; // expected-error{{qualified member access refers to a member in namespace 'C'}}
45}
John McCalla6d407c2009-12-01 22:28:41 +000046
47
48namespace test3 {
49 struct NamespaceDecl;
50
51 struct NamedDecl {
52 void *getIdentifier() const;
53 };
54
55 struct NamespaceDecl : NamedDecl {
56 bool isAnonymousNamespace() const {
57 return !getIdentifier();
58 }
59 };
60}
Douglas Gregor516d6722010-04-25 21:15:30 +000061
62namespace test4 {
63 class X {
64 protected:
65 template<typename T> void f(T);
66 };
67
68 class Y : public X {
69 public:
70 using X::f;
71 };
72
73 void test_f(Y y) {
74 y.f(17);
75 }
76}
John McCalle9cccd82010-06-16 08:42:20 +000077
78namespace test5 {
79 struct A {
80 template <class T> void foo();
81 };
82
83 void test0(int x) {
Kaelyn Uhrain957c8b12013-07-31 20:16:17 +000084 x.A::foo<int>(); // expected-error {{'int' is not a structure or union}}
John McCalle9cccd82010-06-16 08:42:20 +000085 }
86
87 void test1(A *x) {
Kaelyn Uhrain957c8b12013-07-31 20:16:17 +000088 x.A::foo<int>(); // expected-error {{'test5::A *' is a pointer}}
John McCalle9cccd82010-06-16 08:42:20 +000089 }
90
91 void test2(A &x) {
Eric Christopher6e110732015-04-02 22:10:06 +000092 x->A::foo<int>(); // expected-error {{'test5::A' is not a pointer; did you mean to use '.'?}}
John McCalle9cccd82010-06-16 08:42:20 +000093 }
94}
Douglas Gregorc048c522010-06-29 19:27:42 +000095
96namespace PR7508 {
97 struct A {
98 struct CleanupScope {};
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +000099 void PopCleanupBlock(); // expected-note{{'PopCleanupBlock' declared here}}
Douglas Gregorc048c522010-06-29 19:27:42 +0000100 };
101
102 void foo(A &a) {
Kaelyn Uhrain3658e6a2012-01-13 21:28:55 +0000103 a.PopCleanupScope(); // expected-error{{no member named 'PopCleanupScope' in 'PR7508::A'; did you mean 'PopCleanupBlock'?}}
Douglas Gregorc048c522010-06-29 19:27:42 +0000104 }
105}
Douglas Gregora9c3e822010-07-28 22:27:52 +0000106
107namespace rdar8231724 {
108 namespace N {
109 template<typename T> struct X1;
110 int i;
111 }
112
113 struct X { };
114 struct Y : X { };
115
Richard Smithaf416962012-11-15 00:31:27 +0000116 template<typename T> struct Z { int n; };
117
Douglas Gregora9c3e822010-07-28 22:27:52 +0000118 void f(Y *y) {
119 y->N::X1<int>; // expected-error{{'rdar8231724::N::X1' is not a member of class 'rdar8231724::Y'}}
Richard Smithaf416962012-11-15 00:31:27 +0000120 y->Z<int>::n; // expected-error{{'rdar8231724::Z<int>::n' is not a member of class 'rdar8231724::Y'}}
Charles Li542f04c2015-11-11 19:34:47 +0000121 y->template Z<int>::n; // expected-error{{'rdar8231724::Z<int>::n' is not a member of class 'rdar8231724::Y'}}
122#if __cplusplus <= 199711L // C++03 or earlier modes
123 // expected-warning@-2{{'template' keyword outside of a template}}
124#endif
Douglas Gregora9c3e822010-07-28 22:27:52 +0000125 }
126}
Matt Beaumont-Gay956fc1c2011-02-17 02:54:17 +0000127
128namespace PR9025 {
129 struct S { int x; };
John McCall50a2c2c2011-10-11 23:14:30 +0000130 S fun(); // expected-note{{possible target for call}}
131 int fun(int i); // expected-note{{possible target for call}}
Matt Beaumont-Gay956fc1c2011-02-17 02:54:17 +0000132 int g() {
John McCall50a2c2c2011-10-11 23:14:30 +0000133 return fun.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
Matt Beaumont-Gay956fc1c2011-02-17 02:54:17 +0000134 }
135
John McCall50a2c2c2011-10-11 23:14:30 +0000136 S fun2(); // expected-note{{possible target for call}}
137 S fun2(int i); // expected-note{{possible target for call}}
Matt Beaumont-Gay956fc1c2011-02-17 02:54:17 +0000138 int g2() {
John McCall50a2c2c2011-10-11 23:14:30 +0000139 return fun2.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
Matt Beaumont-Gay956fc1c2011-02-17 02:54:17 +0000140 }
Matt Beaumont-Gay06de2552011-02-22 23:52:53 +0000141
John McCall50a2c2c2011-10-11 23:14:30 +0000142 S fun3(int i=0); // expected-note{{possible target for call}}
143 int fun3(int i, int j); // expected-note{{possible target for call}}
Matt Beaumont-Gay06de2552011-02-22 23:52:53 +0000144 int g3() {
John McCall50a2c2c2011-10-11 23:14:30 +0000145 return fun3.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it with no arguments?}}
Matt Beaumont-Gay06de2552011-02-22 23:52:53 +0000146 }
Matt Beaumont-Gayf8bb45f2011-03-05 02:42:30 +0000147
John McCall50a2c2c2011-10-11 23:14:30 +0000148 template <typename T> S fun4(); // expected-note{{possible target for call}}
Matt Beaumont-Gayf8bb45f2011-03-05 02:42:30 +0000149 int g4() {
John McCall50a2c2c2011-10-11 23:14:30 +0000150 return fun4.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
Matt Beaumont-Gayf8bb45f2011-03-05 02:42:30 +0000151 }
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +0000152
John McCall50a2c2c2011-10-11 23:14:30 +0000153 S fun5(int i); // expected-note{{possible target for call}}
154 S fun5(float f); // expected-note{{possible target for call}}
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +0000155 int g5() {
John McCall50a2c2c2011-10-11 23:14:30 +0000156 return fun5.x; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
Matt Beaumont-Gay3c273912011-05-04 22:10:40 +0000157 }
Matt Beaumont-Gay956fc1c2011-02-17 02:54:17 +0000158}
Eli Friedman9a766c42012-01-13 02:20:01 +0000159
160namespace FuncInMemberExpr {
161 struct Vec { int size(); };
162 Vec fun1();
163 int test1() { return fun1.size(); } // expected-error {{base of member reference is a function; perhaps you meant to call it with no arguments}}
164 Vec *fun2();
165 int test2() { return fun2->size(); } // expected-error {{base of member reference is a function; perhaps you meant to call it with no arguments}}
166 Vec fun3(int x = 0);
167 int test3() { return fun3.size(); } // expected-error {{base of member reference is a function; perhaps you meant to call it with no arguments}}
168}
Matt Beaumont-Gayd9f244af2012-04-21 01:12:48 +0000169
170namespace DotForSemiTypo {
171void f(int i) {
172 // If the programmer typo'd '.' for ';', make sure we point at the '.' rather
173 // than the "field name" (whatever the first token on the next line happens to
174 // be).
175 int j = i. // expected-error {{member reference base type 'int' is not a structure or union}}
176 j = 0;
177}
178}
Kaelyn Uhrainbad7fb02013-07-15 19:54:54 +0000179
180namespace PR15045 {
181 class Cl0 {
182 public:
183 int a;
184 };
185
186 int f() {
187 Cl0 c;
Eric Christopher6e110732015-04-02 22:10:06 +0000188 return c->a; // expected-error {{member reference type 'PR15045::Cl0' is not a pointer; did you mean to use '.'?}}
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +0000189 }
190
191 struct bar {
192 void func(); // expected-note {{'func' declared here}}
193 };
194
195 struct foo {
196 bar operator->(); // expected-note 2 {{'->' applied to return value of the operator->() declared here}}
197 };
198
199 template <class T> void call_func(T t) {
Alp Toker6ed72512013-12-14 01:07:05 +0000200 t->func(); // expected-error-re 2 {{member reference type 'PR15045::bar' is not a pointer{{$}}}} \
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +0000201 // expected-note {{did you mean to use '.' instead?}}
202 }
203
204 void test_arrow_on_non_pointer_records() {
205 bar e;
206 foo f;
207
208 // Show that recovery has happened by also triggering typo correction
Eric Christopher6e110732015-04-02 22:10:06 +0000209 e->Func(); // expected-error {{member reference type 'PR15045::bar' is not a pointer; did you mean to use '.'?}} \
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +0000210 // expected-error {{no member named 'Func' in 'PR15045::bar'; did you mean 'func'?}}
211
212 // Make sure a fixit isn't given in the case that the '->' isn't actually
213 // the problem (the problem is with the return value of an operator->).
Alp Toker6ed72512013-12-14 01:07:05 +0000214 f->func(); // expected-error-re {{member reference type 'PR15045::bar' is not a pointer{{$}}}}
Kaelyn Uhrain0c51de42013-07-31 17:38:24 +0000215
216 call_func(e); // expected-note {{in instantiation of function template specialization 'PR15045::call_func<PR15045::bar>' requested here}}
217
218 call_func(f); // expected-note {{in instantiation of function template specialization 'PR15045::call_func<PR15045::foo>' requested here}}
Kaelyn Uhrainbad7fb02013-07-15 19:54:54 +0000219 }
220}
Nick Lewycky1e43d952013-08-21 19:09:44 +0000221
222namespace pr16676 {
223 struct S { int i; };
224 struct T { S* get_s(); };
225 int f(S* s) {
226 T t;
227 return t.get_s // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
Eric Christopher6e110732015-04-02 22:10:06 +0000228 .i; // expected-error {{member reference type 'pr16676::S *' is a pointer; did you mean to use '->'}}
Nick Lewycky1e43d952013-08-21 19:09:44 +0000229 }
230}