The break was probably introduced by #59750. I'll take a look.
Originally posted by @RikkiGibson in dotnet/runtime#67440 (comment)
Scenario:
using System;
class Attr : Attribute
{
public Attr(bool b, int i, params object?[] parameters) { }
}
[Attr(i: 1, b: true)]
class Program { }
The break was probably introduced by #59750. I'll take a look.
Originally posted by @RikkiGibson in dotnet/runtime#67440 (comment)
Scenario: