brintos

brintos / llvm-project-archived public Read only

0
0
Text · 163 B · 960dda3 Raw
7 lines · c
1// Check that fopen(NULL, "r") is ok.2// RUN: %clang -O2 %s -o %t && %run %t3#include <stdio.h>4const char *fn = NULL;5FILE *f;6int main() { f = fopen(fn, "r"); }7