1 // RUN: %clang_analyze_cc1 %s \
2 // RUN: -analyzer-checker=core \
3 // RUN: -analyzer-checker=debug.ExprInspection \
6 // Here, we test that symbol simplification in the solver does not produce any
9 // expected-no-diagnostics
14 static void f(int i
, int j
)
16 (void)(j
<= 0 && i
? i
: j
);
21 int d
= a
- b
| (c
< 0);