| 1 | #include <Foundation/Foundation.h> |
|---|---|
| 2 | |
| 3 | @class IncompleteClass; |
| 4 | |
| 5 | @interface CompleteClass : NSObject |
| 6 | @end |
| 7 | |
| 8 | @interface CompleteClassWithImpl : NSObject |
| 9 | @end |
| 10 | @implementation CompleteClassWithImpl |
| 11 | @end |
| 12 | |
| 13 | IncompleteClass *incomplete = 0; |
| 14 | CompleteClass *complete = 0; |
| 15 | CompleteClassWithImpl *complete_impl = 0; |
| 16 | |
| 17 | int main() { |
| 18 | return 0; // break here |
| 19 | } |
| 20 |
