Microsoft (R) F# 2.0 交互式版本 4.0.40219.1
我正在尝试定义新的记录类型:
type TestOptions =
{ perRunGC : bool;
collectGCStat : bool;
}
一切都很好,但让我们再添加一个字段:
type TestOptions =
{ perRunGC : bool;
collectGCStat : bool;
highPriority : bool;
} ^
我在上面标记的位置收到解析器错误:
error FS0010: Unexpected character ' ' in field declaration
我的代码有什么问题?是编译器错误吗?