xref: /llvm-project/clang/test/Analysis/Checkers/WebKit/ref-ptr-accessor.cpp (revision 82568046e6761f961002ea6c48b5160ba6c7576f)
1 // RUN: %clang_analyze_cc1 -analyzer-checker=alpha.webkit.UncountedCallArgsChecker -verify %s
2 // expected-no-diagnostics
3 
4 #include "mock-types.h"
5 
6 void someFunction(RefCountable*);
7 
testFunction()8 void testFunction()
9 {
10     Ref item = RefCountable::create();
11     someFunction(item.ptr());
12 }
13