mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
195 B
C#
11 lines
195 B
C#
public class NativeInt
|
|
{
|
|
public void M1()
|
|
{
|
|
nint x1 = 0;
|
|
System.IntPtr x2 = (System.IntPtr)0;
|
|
|
|
nuint y1 = 0;
|
|
System.UIntPtr y2 = (System.UIntPtr)0;
|
|
}
|
|
} |