single_null_dereference.c 89 Bytes Raw Blame History Permalink 1 2 3 4 5 int main() { int *p = 0; *p = 7; // We expect a diagnostic about this. return 0; }