xref: /aosp_15_r20/external/clang/test/Analysis/ubigraph-viz.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.API -analyzer-viz-egraph-ubigraph -verify %s
2 // expected-no-diagnostics
3 
f(int x)4 int f(int x) {
5   return x < 0 ? 0 : 42;
6 }
7 
8