Created
January 6, 2020 22:24
-
-
Save kekekeks/78fc2ed1bb86c2ff83543032ebbf06e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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