kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_5_9_01_suppressed_null_ptr_cmp.c (105B)


      1 int test_main(void) {
      2   int x = 0;
      3   int* p = &x;
      4   if (0) {
      5     if (p == 0) return 1;
      6   }
      7   return 7;
      8 }