xref: /llvm-project/clang/test/SemaCXX/ms-property-error.cpp (revision f763027f0477163d855c51425e2a9199739220be)
1 // RUN: %clang_cc1 -verify -fms-compatibility %s -fsyntax-only -o -
2 
3 class S {
4 public:
5   __declspec(property(get=GetX,put=PutX)) int x[];
6   int GetX(int i, int j) { return i+j; } // expected-note {{'GetX' declared here}}
7   void PutX(int i, int j, int k) { j = i = k; } // expected-note {{'PutX' declared here}}
8 };
9 
10 template <typename T>
11 class St {
12 public:
13   __declspec(property(get=GetX,put=PutX)) T x[];
14   T GetX(T i, T j) { return i+j; } // expected-note 3 {{'GetX' declared here}}
15   void PutX(T i, T j, T k) { j = i = k; }  // expected-note 2 {{'PutX' declared here}}
16   ~St() {
17     x[1] = 0; // expected-error {{too few arguments to function call, expected 3, have 2}}
18     x[2][3] = 4;
19     ++x[2][3];
20     x[1][2] = x[3][4][5]; // expected-error {{too many arguments to function call, expected 2, have 3}}
21   }
22 };
23 
24 // CHECK-LABEL: main
25 int main(int argc, char **argv) {
26   S *p1 = 0;
27   St<float> *p2 = 0;
28   St<int> a; // expected-note {{in instantiation of member function 'St<int>::~St' requested here}}
29   int j = (p1->x)[223][11][2]; // expected-error {{too many arguments to function call, expected 2, have 3}}
30   (p1->x[23]) = argc; // expected-error {{too few arguments to function call, expected 3, have 2}}
31   float j1 = (p2->x); // expected-error {{too few arguments to function call, expected 2, have 0}}
32   ((p2->x)[23])[1][2] = *argv; // expected-error {{too many arguments to function call, expected 3, have 4}}
33   return ++(((p2->x)[23])); // expected-error {{too few arguments to function call, expected 2, have 1}}
34 }
35