Skip to content

Instantly share code, notes, and snippets.

@kekekeks
Created January 6, 2020 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kekekeks/78fc2ed1bb86c2ff83543032ebbf06e7 to your computer and use it in GitHub Desktop.
Save kekekeks/78fc2ed1bb86c2ff83543032ebbf06e7 to your computer and use it in GitHub Desktop.
static unsafe class Wat
{
public static unsafe void Test(params int*[] types)
{
}
public static void Crash()
{
Test();
}
}
public static class Program
{
public static void Main()
{
Wat.Crash();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment