Browse Source

Adjust old `calli` test case to new function pointer syntax

pull/2176/head v6.2-preview2
Daniel Grunwald 5 years ago
parent
commit
63d1f5bb09
  1. 2
      ICSharpCode.Decompiler.Tests/TestCases/ILPretty/CallIndirect.cs

2
ICSharpCode.Decompiler.Tests/TestCases/ILPretty/CallIndirect.cs

@ -3,6 +3,6 @@ internal class CallIndirect @@ -3,6 +3,6 @@ internal class CallIndirect
{
private unsafe void Test(IntPtr f)
{
((delegate* stdcall<int, void>)f)(42);
((delegate* unmanaged[Stdcall]<int, void>)f)(42);
}
}
Loading…
Cancel
Save