Ver Fonte

More bugs

svn path=/trunk/mcs/; revision=1704
Miguel de Icaza há 24 anos atrás
pai
commit
1baf009cdd
2 ficheiros alterados com 12 adições e 0 exclusões
  1. 1 0
      mcs/errors/bug12.cs
  2. 11 0
      mcs/errors/bug13.cs

+ 1 - 0
mcs/errors/bug12.cs

@@ -16,3 +16,4 @@ using System.Collections;
 			comparer = new PtrComparer ();
 		}
 	}
+

+ 11 - 0
mcs/errors/bug13.cs

@@ -0,0 +1,11 @@
+using System;
+
+class X {
+	static void Main ()
+	{
+		Type t = null;
+
+		if (t.GetType () == null)
+			return;
+	}
+}