Source file diff_abstract.ml

1
2
3
4
5
6
7
8
9
10
11
open Base

let diff =
  let functions =
    Or_error.error_string "diff of abstract types is only supported in mlis / signatures"
  in
  { Diff.prefix = Items.empty
  ; diff_type = This { kind = Abstract; nonrec_ = false; unboxed_override = None }
  ; functions
  }
;;