2012-06-20 10:18:46 +04:00
|
|
|
// RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5 %s -o -
|
2008-05-24 03:06:56 +04:00
|
|
|
|
|
|
|
@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
|
|
|
|
|