Version: [1.2.0-beta.435](https://www.nuget.org/packages/StyleCop.Analyzers/1.2.0-beta.435) Repro: ```C# internal struct SomeStruct { public required int Prop { get; set; } } ``` Expected: No warnings Actual: ``` SA1206: The 'required' modifier should appear before 'public' ```