f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
10 lines
307 B
C++
10 lines
307 B
C++
// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility
|
|
|
|
// PR15845
|
|
int foo(xxx); // expected-error{{unknown type name}}
|
|
|
|
struct cls {
|
|
char *m;
|
|
};
|
|
|
|
char * cls::* __uptr wrong2 = &cls::m; // expected-error {{'__uptr' attribute cannot be used with pointers to members}}
|