lin
2025-07-30 fcd736bf35fd93b563e9bbf594f2aa7b62028cc9
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core.DynamicTypeChecker -verify %s
 
 
#define nil 0
typedef unsigned long NSUInteger;
typedef int BOOL;
 
@protocol NSObject
+ (id)alloc;
- (id)init;
@end
 
@protocol NSCopying
@end
 
__attribute__((objc_root_class))
@interface NSObject <NSObject>
@end
 
@interface NSString : NSObject <NSCopying>
@end
 
@interface NSMutableString : NSString
@end
 
@interface NSNumber : NSObject <NSCopying>
@end
 
@class MyType;
 
void testTypeCheck(NSString* str) {
  id obj = str;
  NSNumber *num = obj; // expected-warning {{}}
  (void)num;
}
 
void testForwardDeclarations(NSString* str) {
  id obj = str;
  // Do not warn, since no information is available wether MyType is a sub or
  // super class of any other type.
  MyType *num = obj; // no warning
  (void)num;
}