blob: 55948fdb0051cdf3521e8383129e8d1f4a43244c [file] [log] [blame]
Richard Trieu919b9552012-11-02 01:08:58 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
2// RUN: cp %s %t
3// RUN: not %clang_cc1 -x c++ -fixit %t
4// RUN: %clang_cc1 -x c++ %t
5
6struct S { static int a,b,c;};
Richard Trieueacff032012-11-02 21:41:42 +00007int S::(a); // expected-error{{unexpected parenthesis after '::'}}
8int S::(b; // expected-error{{unexpected parenthesis after '::'}}
Richard Trieu919b9552012-11-02 01:08:58 +00009int S::c;
Richard Trieueacff032012-11-02 21:41:42 +000010int S::(*d); // expected-error{{unexpected parenthesis after '::'}}
11int S::(*e; // expected-error{{unexpected parenthesis after '::'}}
Richard Trieu919b9552012-11-02 01:08:58 +000012int S::*f;
Richard Trieueacff032012-11-02 21:41:42 +000013int g = S::(a); // expected-error{{unexpected parenthesis after '::'}}
14int h = S::(b; // expected-error{{unexpected parenthesis after '::'}}
Richard Trieu919b9552012-11-02 01:08:58 +000015int i = S::c;
16
17void foo() {
18 int a;
Richard Trieueacff032012-11-02 21:41:42 +000019 a = ::(g); // expected-error{{unexpected parenthesis after '::'}}
20 a = ::(h; // expected-error{{unexpected parenthesis after '::'}}
Richard Trieu919b9552012-11-02 01:08:58 +000021 a = ::i;
22}