[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Analysis / analyze-function-guide.m
blob9f0fc43a27ac34324a52c9c16bb3d232e3f7ba1c
2 // RUN: %clang_analyze_cc1 -analyzer-checker=core -Wno-objc-root-class \
3 // RUN:   -analyze-function='missing_fn' \
4 // RUN:   -triple x86_64-pc-linux-gnu 2>&1 %s \
5 // RUN: | FileCheck %s -check-prefix=CHECK-MISSING
6 //
7 // CHECK-MISSING: Every top-level function was skipped.
8 // CHECK-MISSING: Pass the -analyzer-display-progress for tracking which functions are analyzed.
10 @interface MyClass
11 - (int)messageWithFoo:(int)foo bar:(int)bar;
12 @end
14 @implementation MyClass
15 - (int)messageWithFoo:(int)foo bar:(int)bar {
16   return foo + bar;
18 @end