forked from OSchip/llvm-project
6 lines
89 B
C
6 lines
89 B
C
|
int main() {
|
||
|
int *p = 0;
|
||
|
*p = 7; // We expect a diagnostic about this.
|
||
|
return 0;
|
||
|
}
|