[mcs] Lift result of null operator over dotted expressions only ending with not null...
[mono.git] / mcs / tests / test-null-operator-04.cs
diff --git a/mcs/tests/test-null-operator-04.cs b/mcs/tests/test-null-operator-04.cs
deleted file mode 100644 (file)
index 6796920..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-
-public class D
-{
-       void Foo ()
-       {
-       }
-
-       public static void Main()
-       {
-               D d = null;
-               Action a = d?.Foo;
-       }
-}