13 lines · cpp
1// RUN: %clang_analyze_cc1 -analyzer-checker=alpha.webkit.UncountedCallArgsChecker -verify %s2// expected-no-diagnostics3 4#include "mock-types.h"5 6void someFunction(RefCountable*);7 8void testFunction()9{10 Ref item = RefCountable::create();11 someFunction(item.ptr());12}13