llvm-project/clang/test/Rewriter/no-integrated-preprocessing.m
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

26 lines
457 B
Objective-C

// RUN: %clang -target i386-unknown-unknown -fms-extensions -rewrite-objc %s -o %t-rw.cpp
// RUN: FileCheck %s < %t-rw.cpp
#ifdef __cplusplus
void *sel_registerName(const char *);
@interface Root @end
@interface MYINTF : Root
@end
#endif
@implementation MYINTF
- (id) MYMETH { return [self MYMETH]; }
@end
int main() {
}
// CHECK: static struct _class_ro_t _OBJC_CLASS_RO_$_MYINTF
// CHECK-NEXT: 0, 0, 0,
// CHECK-NEXT: 0,
// CHECK-NEXT: "MYINTF",