dd547c45d4
Former-commit-id: fb75898888a02f4d3a74cf0a5b841681bc4c7fa8
21 lines
244 B
C#
21 lines
244 B
C#
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");
|
|
}
|
|
}
|