blob: 41bb875c680ab6151d346476fa45d5a9a957cfe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  | 
// 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
  |