Switch to compiler-tester
[mono.git] / mcs / tests / gen-132.cs
diff --git a/mcs/tests/gen-132.cs b/mcs/tests/gen-132.cs
deleted file mode 100644 (file)
index c87da9d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-//-- ex-nullable-sqrt
-
-using System;
-
-class MyTest {
-  public static int? Sqrt(int? x) {
-    if (x.HasValue && x.Value >= 0)
-      return (int)(Math.Sqrt(x.Value));
-    else
-      return null;
-  }
-
-  public static void Main(String[] args) {
-    // Prints :2:::
-    Console.WriteLine(":{0}:{1}:{2}:", Sqrt(5), Sqrt(null), Sqrt(-5));
-  }
-}