About
Contact
QtCreator
KDevelop
Solarized
1
// Check that fopen(NULL, "r") is ok.
2
// RUN: %clang -O2 %s -o %t && %run %t
3
#include
<stdio.h>
4
const
char
*
fn
=
NULL
;
5
FILE
*
f
;
6
int
main
() {
f
=
fopen
(
filename:
fn
,
modes:
"r"
); }
7