ocaml/testsuite/tests/basic-float/float_record.mli

19 lines
909 B
OCaml

(***********************************************************************)
(* *)
(* OCaml *)
(* *)
(* Pierre Weis, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 2007 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
type t = private float;;
val make : float -> t;;
val from : t -> float;;
type s = {f : t};;