Processing dotnet/runtime#116331 (comment) command:
Command
-windows_intel -use32bit
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
public class SimpleBench
{
[Benchmark]
public void InvokeGenericDelegate() => (new Action<Object>(ActionFunction)).Invoke(1);
void ActionFunction<T>(T obj) { }
}
(EgorBot will reply in this issue)