On Thu, Feb 28, 2008 at 6:23 AM, Damien Doligez <damien.doligez@inria.fr> wrote:
Example (on a 32-bit machine):

       Objective Caml version 3.10.2+rc1

# let x = Obj.repr 1;;
val x : Obj.t = <abstr>
# let y = Obj.repr 1.0;;
val y : Obj.t = <abstr>
# [| x; y |];;
- : Obj.t array = [|<abstr>; <abstr>|]
# [| y; x |];;
Bus error

Could you please explain this behavior?

Jake