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
I'm seeing a recent regression in Csc, it wasn't there in 4.12.0-3.24463.9 but it is present in 4.12.0-3.24510.2 (Preview 5)
The symptoms are:
MetadataType.cs(411,36): error CS1061: 'IList<KeyValuePair<string, ulong>>' does not contain a definition for 'Attributes' and no accessible extension method 'Attributes' accepting a first argument of type 'IList<KeyValuePair<string, ulong>>' could be found (are you missing a using directive or an assembly reference?)
I can't find a standalone repro, but it looks like it thinks that a local's type is that of another local.
I can't share the repro publicly but ping me in private.
I think this is pretty bad.
The text was updated successfully, but these errors were encountered:
warning CS9258: In language version preview, the 'field' keyword binds to a synthesized backing field for the property. To avoid generating a synthesized backing field, and to refer to the existing member, use 'this.field' or '@field' instead.
In the code snippet, there was a local named field.
I'm seeing a recent regression in Csc, it wasn't there in
4.12.0-3.24463.9
but it is present in4.12.0-3.24510.2
(Preview 5)The symptoms are:
I can't find a standalone repro, but it looks like it thinks that a local's type is that of another local.
I can't share the repro publicly but ping me in private.
I think this is pretty bad.
The text was updated successfully, but these errors were encountered: