Christophe PLAT
Christophe PLAT
It's worth noting that the C# compiler doesn't allow it either: ```C# dynamic dynamicData = new ExpandoObject(); dynamicData.Some = new List { "one", "two", "two", "three" }; var result =...
Do you have an example of code that can reproduce the issue?
It's similar, except that my repro fails even if there's no mix between severity settings from `dotnet_diagnostic.IDExxxx.severity` and `option_name = option_value:severity`, as suggested by https://github.com/dotnet/roslyn/issues/52991#issuecomment-1960692440, contrary to the other issue's...