You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/.FSharp.Compiler.Service/9.0.100.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@
11
11
* Nullness export - make sure option<> and other UseNullAsTrueValue types are properly annotated as nullable for C# and reflection consumers [PR #17528](https://github.com/dotnet/fsharp/pull/17528)
12
12
* MethodAccessException on equality comparison of a type private to module. ([Issue #17541](https://github.com/dotnet/fsharp/issues/17541), [PR #17548](https://github.com/dotnet/fsharp/pull/17548))
13
13
* Fixed checking failure when `global` namespace is involved with enabled GraphBasedChecking ([PR #17553](https://github.com/dotnet/fsharp/pull/17553))
lexCharNotAllowedInOperatorNames,"'%s' is not permitted as a character in operator names and is reserved for future use"
1022
1022
lexUnexpectedChar,"Unexpected character '%s'"
1023
-
1140,lexByteArrayCannotEncode,"This byte array literal contains characters that do not encode as a single byte"
1023
+
1140,lexByteArrayCannotEncode,"This byte array literal contains %d characters that do not encode as a single byte"
1024
1024
1141,lexIdentEndInMarkReserved,"Identifiers followed by '%s' are reserved for future use"
1025
1025
1142,lexOutsideEightBitSigned,"This number is outside the allowable range for 8-bit signed integers"
1026
1026
1143,lexOutsideEightBitSignedHex,"This number is outside the allowable range for hexadecimal 8-bit signed integers"
@@ -1037,7 +1037,8 @@ lexUnexpectedChar,"Unexpected character '%s'"
1037
1037
1154,lexOutsideDecimal,"This number is outside the allowable range for decimal literals"
1038
1038
1155,lexOutsideThirtyTwoBitFloat,"This number is outside the allowable range for 32-bit floats"
1039
1039
1156,lexInvalidNumericLiteral,"This is not a valid numeric literal. Valid numeric literals include 1, 0x1, 0o1, 0b1, 1l (int/int32), 1u (uint/uint32), 1L (int64), 1UL (uint64), 1s (int16), 1us (uint16), 1y (int8/sbyte), 1uy (uint8/byte), 1.0 (float/double), 1.0f (float32/single), 1.0m (decimal), 1I (bigint)."
1040
-
1157,lexInvalidByteLiteral,"This is not a valid byte literal"
1040
+
1157,lexInvalidAsciiByteLiteral,"This is not a valid byte character literal. The value must be less than or equal to '\127'B."
1041
+
1157,lexInvalidTrigraphAsciiByteLiteral,"This is not a valid byte character literal. The value must be less than or equal to '\127'B.\nNote: In a future F# version this warning will be promoted to an error."
1041
1042
1158,lexInvalidCharLiteral,"This is not a valid character literal"
1042
1043
1159,lexThisUnicodeOnlyInStringLiterals,"This Unicode encoding is only valid in string literals"
1043
1044
1160,lexTokenReserved,"This token is reserved for future use"
@@ -1131,6 +1132,8 @@ lexIfOCaml,"IF-FSHARP/IF-CAML regions are no longer supported"
1250,lexTooManyPercentsInTripleQuote,"The interpolated triple quoted string literal does not start with enough '$' characters to allow this many consecutive '%%' characters."
1133
1134
1251,lexExtendedStringInterpolationNotSupported,"Extended string interpolation is not supported in this version of F#."
1135
+
1252,lexInvalidCharLiteralInString,"'%s' is not a valid character literal.\nNote: Currently the value is wrapped around byte range to '%s'. In a future F# version this warning will be promoted to an error."
1136
+
1253,lexByteArrayOutisdeAscii,"This byte array literal contains %d non-ASCII characters. All characters should be < 128y."
1134
1137
# reshapedmsbuild.fs
1135
1138
1300,toolLocationHelperUnsupportedFrameworkVersion,"The specified .NET Framework version '%s' is not supported. Please specify a value from the enumeration Microsoft.Build.Utilities.TargetDotNetFrameworkVersion."
0 commit comments