brintos

brintos / llvm-project-archived public Read only

0
0
Text · 275 B · 560dcfd Raw
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