summarylogtreecommitdiffstats
path: root/PassingTest.c
blob: f3ddc3f955c4ace58bfaeb91f2008bf07bbc404d (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
int main() {
  int *s = NULL;
  if (s != NULL) {
    *s = 42;
  }
  return 0;
}