1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-config suppress-null-return-paths=true -analyzer-output=text -verify %s
2 // expected-no-diagnostics
4 int *returnNull(void) { return 0; }
7 // Use a float parameter to ensure that the value is unknown. This will create
8 // a cycle in the generated ExplodedGraph.
9 void testCycle(float i
) {
10 int *x
= returnNull();