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
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -259,17 +259,17 @@ chkVariableUsedInInvalidWay,"The variable '%s' is used in an invalid way"
259
259
433,chkEntryPointUsage,"A function labeled with the 'EntryPointAttribute' attribute must be the last declaration in the last file in the compilation sequence."
260
260
chkUnionCaseCompiledForm,"compiled form of the union case"
261
261
chkUnionCaseDefaultAugmentation,"default augmentation of the union case"
262
-
434,chkPropertySameNameMethod,"Name clash.The property '%s' has the same name as a method inthistype."
263
-
435,chkGetterSetterDoNotMatchAbstract,"The property '%s' has a getter and a setter that do not match. If one is abstract then the other must be as well."
264
-
436,chkPropertySameNameIndexer,"The property '%s' has the same name as another property inthistype, but one takes indexer arguments and the other does not. You may be missing an indexer argument to one of your properties."
262
+
434,chkPropertySameNameMethod,"The property '%s' has the same name as a method in type '%s'."
263
+
435,chkGetterSetterDoNotMatchAbstract,"The property '%s'of type '%s'has a getter and a setter that do not match. If one is abstract then the other must be as well."
264
+
436,chkPropertySameNameIndexer,"The property '%s' has the same name as another property in type '%s', but one takes indexer arguments and the other does not. You may be missing an indexer argument to one of your properties."
265
265
437,chkCantStoreByrefValue,"A type would store a byref typed value. This is not permitted by Common IL."
266
266
#See related 1205 chkDuplicateInherittedVirtualMethod
267
-
438,chkDuplicateMethod,"Duplicate method. The method '%s' has the same name and signature as another method inthistype."
268
-
438,chkDuplicateMethodWithSuffix,"Duplicate method. The method '%s' has the same name and signature as another method inthistype once tuples, functions, units of measure and/or provided types are erased."
269
-
439,chkDuplicateMethodCurried,"The method '%s' has curried arguments but has the same name as another method inthistype. Methods with curried arguments cannot be overloaded. Consider using a method taking tupled arguments."
267
+
438,chkDuplicateMethod,"Duplicate method. The method '%s' has the same name and signature as another method in type '%s'."
268
+
438,chkDuplicateMethodWithSuffix,"Duplicate method. The method '%s' has the same name and signature as another method in type '%s' once tuples, functions, units of measure and/or provided types are erased."
269
+
439,chkDuplicateMethodCurried,"The method '%s' has curried arguments but has the same name as another method in type '%s'. Methods with curried arguments cannot be overloaded. Consider using a method taking tupled arguments."
270
270
440,chkCurriedMethodsCantHaveOutParams,"Methods with curried arguments cannot declare 'out', 'ParamArray', 'optional', 'ReflectedDefinition', 'byref', 'CallerLineNumber', 'CallerMemberName', or 'CallerFilePath' arguments"
271
-
441,chkDuplicateProperty,"Duplicate property. The property '%s' has the same name and signature as another property inthistype."
272
-
441,chkDuplicatePropertyWithSuffix,"Duplicate property. The property '%s' has the same name and signature as another property inthistype once tuples, functions, units of measure and/or provided types are erased."
271
+
441,chkDuplicateProperty,"Duplicate property. The property '%s' has the same name and signature as another property in type '%s'."
272
+
441,chkDuplicatePropertyWithSuffix,"Duplicate property. The property '%s' has the same name and signature as another property in type '%s' once tuples, functions, units of measure and/or provided types are erased."
273
273
442,chkDuplicateMethodInheritedType,"Duplicate method. The abstract method '%s' has the same name and signature as an abstract method in an inherited type."
274
274
442,chkDuplicateMethodInheritedTypeWithSuffix,"Duplicate method. The abstract method '%s' has the same name and signature as an abstract method in an inherited type once tuples, functions, units of measure and/or provided types are erased."
275
275
443,chkMultipleGenericInterfaceInstantiations,"This type implements the same interface at different generic instantiations '%s' and '%s'. This is not permitted in this version of F#."