main()1 int main() {
2   int *p = 0;
3   *p = 7; // We expect a diagnostic about this.
4   return 0;
5 }
6