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: src/fsharp/FSComp.txt
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -264,7 +264,7 @@ chkUnionCaseDefaultAugmentation,"default augmentation of the union case"
264
264
438,chkDuplicateMethod,"Duplicate method. The method '%s' has the same name and signature as another method in this type."
265
265
438,chkDuplicateMethodWithSuffix,"Duplicate method. The method '%s' has the same name and signature as another method in this type once tuples, functions, units of measure and/or provided types are erased."
266
266
439,chkDuplicateMethodCurried,"The method '%s' has curried arguments but has the same name as another method in this type. Methods with curried arguments cannot be overloaded. Consider using a method taking tupled arguments."
440,chkCurriedMethodsCantHaveOutParams,"Methods with curried arguments cannot declare 'out', 'ParamArray', 'optional', 'ReflectedDefinition', 'byref', 'CallerLineNumber', 'CallerMemberName', or 'CallerFilePath' arguments"
268
268
441,chkDuplicateProperty,"Duplicate property. The property '%s' has the same name and signature as another property in this type."
269
269
441,chkDuplicatePropertyWithSuffix,"Duplicate property. The property '%s' has the same name and signature as another property in this type once tuples, functions, units of measure and/or provided types are erased."
270
270
442,chkDuplicateMethodInheritedType,"Duplicate method. The abstract method '%s' has the same name and signature as an abstract method in an inherited type."
@@ -1077,6 +1077,8 @@ lexIndentOffForML,"Consider using a file with extension '.ml' or '.mli' instead"
1077
1077
1243,parsUnexpectedQuotationOperatorInTypeAliasDidYouMeanVerbatimString,"Unexpected quotation operator '<@' in type definition. If you intend to pass a verbatim string as a static argument to a type provider, put a space between the '<' and '@' characters."
1078
1078
1244,parsErrorParsingAsOperatorName,"Attempted to parse this as an operator name, but failed"
1079
1079
1245,lexInvalidUnicodeLiteral,"\U%s is not a valid Unicode character escape sequence"
1080
+
1246,tcCallerInfoWrongType,"'%s' must be applied to an argument of type '%s', but has been applied to an argument of type '%s'"
1081
+
1247,tcCallerInfoNotOptional,"'%s' can only be applied to optional arguments"
1080
1082
# reshapedmsbuild.fs
1081
1083
1300,toolLocationHelperUnsupportedFrameworkVersion,"The specified .NET Framework version "%s" is not supported. Please specify a value from the enumeration Microsoft.Build.Utilities.TargetDotNetFrameworkVersion."
@@ -1310,3 +1312,4 @@ estApplyStaticArgumentsForMethodNotImplemented,"A type provider implemented GetS
1310
1312
3203,parsInvalidUseOfRec,"Invalid use of 'rec' keyword"
1311
1313
3204,tcStructUnionMultiCase,"A union type which is a struct must have only one case."
1312
1314
3205,tcUseMayNotBeMutable,"This feature is deprecated. A 'use' binding may not be marked 'mutable'."
1315
+
3206,CallerMemberNameIsOverriden,"The CallerMemberNameAttribute applied to parameter '%s' will have no effect. It is overridden by the CallerFilePathAttribute."
0 commit comments