[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Rewriter / rewrite-nest.m
blob41bb875c680ab6151d346476fa45d5a9a957cfe8
1 // RUN: %clang_cc1 -rewrite-objc -fobjc-runtime=macosx-fragile-10.5  %s -o -
3 @interface NSMapTable @end
4 @interface NSEnumerator @end
6 typedef unsigned int NSUInteger;
8 @interface NSConcreteMapTable : NSMapTable {
9 @public
10     NSUInteger capacity;
12 @end
14 @interface NSConcreteMapTableValueEnumerator : NSEnumerator {
15     NSConcreteMapTable *mapTable;
17 @end
19 @implementation NSConcreteMapTableValueEnumerator
21 - nextObject {
22     while (mapTable->capacity) {
23     }
24     return 0;
26 @end