Hi,
 
why is the result 2 of the following expression? 
 
match Marshal.from_string (Marshal.to_string (Failure "test") []) 0 with
    Failure _ -> 1
  | _ -> 2    ;;
 
Ocaml 3.11.2.
 
TIA,
Christoph Bauer