You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
486 B

// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
@interface NSMapTable @end
@interface NSEnumerator @end
typedef unsigned int NSUInteger;
@interface NSConcreteMapTable : NSMapTable {
@public
NSUInteger capacity;
}
@end
@interface NSConcreteMapTableValueEnumerator : NSEnumerator {
NSConcreteMapTable *mapTable;
}
@end
@implementation NSConcreteMapTableValueEnumerator
- nextObject {
while (mapTable->capacity) {
}
return 0;
}
@end