为什么我不能为这个字段分配一个 64 位整数?
Why can't I assign a 64bit integer to this field?
是否应该使用数字后缀将数字常量值分配给 int64
类型?
错误的适度编辑版本是:
We've found a bug for you!
{file}.re:321:20-31
321 │ let (rsid:int64) = 180785985722;
This has type: int
Somewhere wanted: int64
其中 'this' 指的是红色突出显示的数字。
int64
文字使用后缀 L
:
let rsid: int64 = 180785985722L;
我认为这在任何地方都没有针对 Reason 的记录,但在 manual and the Int64
module 中有针对 OCaml 的记录,除非有理由偏离,否则 Reason 倾向于遵循。
是否应该使用数字后缀将数字常量值分配给 int64
类型?
错误的适度编辑版本是:
We've found a bug for you!
{file}.re:321:20-31
321 │ let (rsid:int64) = 180785985722;
This has type: int
Somewhere wanted: int64
其中 'this' 指的是红色突出显示的数字。
int64
文字使用后缀 L
:
let rsid: int64 = 180785985722L;
我认为这在任何地方都没有针对 Reason 的记录,但在 manual and the Int64
module 中有针对 OCaml 的记录,除非有理由偏离,否则 Reason 倾向于遵循。