
ObjC++ has two different types of "pointer" types (ObjCClassPointerType and PointerType). Both can be indirected through. However, the former is not a member expression. Ensure that we do not try to rebuild the MRE in that case. llvm-svn: 300909
10 lines
358 B
Plaintext
10 lines
358 B
Plaintext
// RUN: %clang_cc1 -triple x86_64-apple-macosx -fsyntax-only -verify -x objective-c++ %s -o /dev/null
|
|
// REQUIRES: asserts
|
|
|
|
struct objc_class {
|
|
unsigned long long bits;
|
|
};
|
|
typedef struct objc_class *Class;
|
|
static void f(Class c) { (void)(c->bits & RW_HAS_OVERFLOW_REFCOUNT); }
|
|
// expected-error@-1{{use of undeclared identifier 'RW_HAS_OVERFLOW_REFCOUNT}}
|