Microsoft (R) F# 2.0 インタラクティブ ビルド 4.0.40219.1
新しいレコードタイプを定義しようとしています:
type TestOptions =
{ perRunGC : bool;
collectGCStat : bool;
}
すべて問題ありませんが、もう 1 つフィールドを追加しましょう。
type TestOptions =
{ perRunGC : bool;
collectGCStat : bool;
highPriority : bool;
} ^
そして、上記の位置でパーサー エラーが発生しています。
error FS0010: Unexpected character ' ' in field declaration
コードの何が問題になっていますか? コンパイラのバグですか?