1

我在 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 end

好的,这没问题。

但是如果我将上面的代码保存到一个ml文件中并在 utop 中使用它,它会给出错误:

错误:未绑定类型构造函数_no_unused_value_warning_

为什么?这是utop中的错误吗?我该如何举报?

4

1 回答 1

0

它也可以在我的系统上表示,与

Core 111.11.01
Utop 1.12

这是一个错误,当然。您应该向Jérémie Dimino报告,因为他负责核心和 utop。

于 2014-05-08T04:58:32.897 回答