blob: ca52538f3a670910665eed75b7730f91a2b5e650 [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
Alexey Bataev60520e22015-12-10 04:38:18 +000010char *ptr;
Alexey Bataevf7630272015-11-25 12:01:00 +000011template <typename T>
12class St {
13public:
14 __declspec(property(get=GetX,put=PutX)) T x[];
15 T GetX(T i, T j) { return i+j; } // expected-note 3 {{'GetX' declared here}}
Alexey Bataev60520e22015-12-10 04:38:18 +000016 T PutX(T i, T j, T k) { return j = i = k; } // expected-note 2 {{'PutX' declared here}}
Alexey Bataevf7630272015-11-25 12:01:00 +000017 ~St() {
18 x[1] = 0; // expected-error {{too few arguments to function call, expected 3, have 2}}
19 x[2][3] = 4;
20 ++x[2][3];
21 x[1][2] = x[3][4][5]; // expected-error {{too many arguments to function call, expected 2, have 3}}
Alexey Bataev60520e22015-12-10 04:38:18 +000022 ptr = x[1][2] = x[3][4]; // expected-error {{assigning to 'char *' from incompatible type 'int'}}
Alexey Bataevf7630272015-11-25 12:01:00 +000023 }
24};
25
26// CHECK-LABEL: main
27int main(int argc, char **argv) {
28 S *p1 = 0;
29 St<float> *p2 = 0;
30 St<int> a; // expected-note {{in instantiation of member function 'St<int>::~St' requested here}}
31 int j = (p1->x)[223][11][2]; // expected-error {{too many arguments to function call, expected 2, have 3}}
32 (p1->x[23]) = argc; // expected-error {{too few arguments to function call, expected 3, have 2}}
33 float j1 = (p2->x); // expected-error {{too few arguments to function call, expected 2, have 0}}
34 ((p2->x)[23])[1][2] = *argv; // expected-error {{too many arguments to function call, expected 3, have 4}}
Alexey Bataev60520e22015-12-10 04:38:18 +000035 argv = p2->x[11][22] = argc; // expected-error {{assigning to 'char **' from incompatible type 'float'}}
Alexey Bataevf7630272015-11-25 12:01:00 +000036 return ++(((p2->x)[23])); // expected-error {{too few arguments to function call, expected 2, have 1}}
37}