Dave Lee 23b0564800
[lldb] Fix AppleObjCDeclVendor for classes which have no methods (#145452)
Fix the rare case where an ObjC class has ivars but no methods. The fix is to not early
return when a class has no method list.
2025-06-24 10:58:06 -07:00

8 lines
88 B
Objective-C

#import "Point.h"
int main() {
Point *p = [Point new];
// break here
return 0;
}