我在utop中添加了require "sexplib.syntax";;
和core
等。
如果我输入
module type Printer = sig
type t with sexp
end
在utop,它说
好的,这没问题。模块类型Printer = sig type t val t_of_sexp:Sexp.t - > t val sexp_of_t:t - > Sexp.t结束
但是,如果我将上述代码保存到ml
文件中并在utop中使用它,则会出错:
错误:未绑定类型构造函数_no_unused_value_warning _
为什么?这是utop中的错误吗?我该如何举报?
答案 0 :(得分:0)