blob: 90a45dfaaf176d903542cb2b37fef342f691df67 [file] [log] [blame]
Inna Palantff3f07a2019-07-11 16:15:26 -07001// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility
2
3// PR15845
4int foo(xxx); // expected-error{{unknown type name}}
5
6struct cls {
7 char *m;
8};
9
10char * cls::* __uptr wrong2 = &cls::m; // expected-error {{'__uptr' attribute cannot be used with pointers to members}}