Mikhail Kosticyn
Results
3
issues of
Mikhail Kosticyn
Test all usages of DeclaringType and change them on ReflectedType if need.
``` public static class Linq { private enum EventType { Save, Change } private record Event(int UserId, EventType Type, string Delta); public interface ISaver { bool Save(IEnumerable deltas); } public...
bug