blob: 90a45dfaaf176d903542cb2b37fef342f691df67 [file] [log] [blame]
Richard Smith3b870382013-04-30 22:43:51 +00001// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility
2
3// PR15845
4int foo(xxx); // expected-error{{unknown type name}}
Aaron Ballman317a77f2013-05-22 23:25:32 +00005
6struct cls {
7 char *m;
8};
9
10char * cls::* __uptr wrong2 = &cls::m; // expected-error {{'__uptr' attribute cannot be used with pointers to members}}