DEBSOURCES
Skip Quicknav
sources / llvm-toolchain-9 / 1%3A9.0.1-16 / clang / docs / analyzer / checkers / dividezero_example.c
123456789
void test(int z) { if (z == 0) int x = 1 / z; // warn } void test() { int x = 1; int y = x % 0; // warn }