blob: 560dcfd4bdb094a8d7db05b79a823f364ca02339 [file] [log] [blame]
// RUN: %clang_analyze_cc1 -analyzer-checker=alpha.webkit.UncountedCallArgsChecker -verify %s
// expected-no-diagnostics
#include "mock-types.h"
void someFunction(RefCountable*);
void testFunction()
{
Ref item = RefCountable::create();
someFunction(item.ptr());
}