mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
504 B
30 lines
504 B
using System; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty |
|
{ |
|
internal class Issue1918 |
|
{ |
|
public static Guid[] NullVal; |
|
|
|
public unsafe void ProblemFunction(Guid[] A_0, int A_1) |
|
{ |
|
fixed (Guid* ptr = A_0) |
|
{ |
|
void* ptr2 = ptr; |
|
UIntPtr* ptr3 = (UIntPtr*)((byte*)ptr2 - sizeof(UIntPtr)); |
|
UIntPtr uIntPtr = *ptr3; |
|
try |
|
{ |
|
*ptr3 = (UIntPtr)(ulong)A_1; |
|
} |
|
finally |
|
{ |
|
*ptr3 = uIntPtr; |
|
} |
|
} |
|
fixed (Guid[] ptr = NullVal) |
|
{ |
|
} |
|
} |
|
} |
|
}
|
|
|