1 // RUN: %clang_analyze_cc1 -fblocks -analyzer-display-progress %s 2>&1 | FileCheck %s
3 #include "Inputs/system-header-simulator-objc.h"
8 -(void)instanceMethod:(int)arg1 with:(int)arg2;
13 -(void)instanceMethod:(int)arg1 with:(int)arg2 {}
17 void g(I *i, int x, int y) {
19 [i instanceMethod: x with: y];
26 // CHECK: analyzer-display-progress.m f
27 // CHECK: analyzer-display-progress.m -[I instanceMethod:with:]
28 // CHECK: analyzer-display-progress.m +[I classMethod]
29 // CHECK: analyzer-display-progress.m g
30 // CHECK: analyzer-display-progress.m block (line: 22, col: 11)