blob: 78a2bf607b45bd9f220c41bee18aca85e38c6d01 [file] [log] [blame]
Alexey Bataevf7630272015-11-25 12:01:00 +00001// RUN: %clang_cc1 -verify -fms-compatibility %s -fsyntax-only -o -
2
3class S {
4public:
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
10template <typename T>
11class St {
12public:
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
25int 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}