1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -analyzer-config mode=shallow -verify %s
2 // expected-no-diagnostics
4 void clang_analyzer_checkInlined(unsigned);
6 typedef signed char BOOL;
7 typedef struct objc_class *Class;
8 typedef struct objc_object {
11 @protocol NSObject - (BOOL)isEqual:(id)object; @end
12 @interface NSObject <NSObject> {}
17 @interface MyClass : NSObject
22 @implementation MyClass
27 clang_analyzer_checkInlined(0); // The call is not inlined.