summaryrefslogtreecommitdiff
path: root/testsuite/tests/lib-filename/null.ml
blob: ecad3c7836a5573a8a076f362f023e863b2a8aa3 (plain)
1
2
3
4
5
6
7
(* TEST *)

let () =
  let ic = open_in Filename.null in
  match input_char ic with
  | exception End_of_file -> close_in ic
  | _ -> assert false