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
classRepro{voidM(PartialClassc){// ❌ CS0229 Ambiguity between 'PartialClass.Prop' and 'PartialClass.Prop'_=c.Prop;_=c.Prop;// Yep, error still here._=newPartialClass(0).Prop;// No error here!_=c.Prop;// ERROR DISAPPEARS_=c.Prop;// IT'S STILL GONE}}
RoccoZero, stevemonaco, blackmaple, QianMoXi and LuohuaRain