**Version Used**: Visual Studio 2019 16.6.2 **Steps to Reproduce**: ```C# using System; namespace N { public class C { public const DateTimeKind DateTimeKind = System.DateTimeKind.Utc; } } ``` **Expected Behavior**: no suggestion is provided **Actual Behavior**: code fix suggested, which simplifies code to ```C# using System; namespace N { public class C { public const DateTimeKind DateTimeKind = DateTimeKind.Utc; } } ``` which causes error ``` CS0110 The evaluation of the constant value for 'C.DateTimeKind' involves a circular definition ```