[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / test-null-operator-18.cs
blobad0d72e9b7365033e842cbf5a85f3ad2586ec2a8
1 using System;
3 static class MainClass
5 public static void Main()
7 TestBug();
10 public static void TestBug()
12 int? value = null;
13 value?.Test();
16 public static void Test(this int value)
18 Console.WriteLine("Not null");