linux-packaging-mono/mcs/tests/test-null-operator-18.cs

21 lines
244 B
C#
Raw Permalink Normal View History

using System;
static class MainClass
{
public static void Main()
{
TestBug();
}
public static void TestBug()
{
int? value = null;
value?.Test();
}
public static void Test(this int value)
{
Console.WriteLine("Not null");
}
}