Merge pull request #4003 from ntherning/ignore-disconnected-interfaces-in-HttpListene...
[mono.git] / mcs / tests / test-424.cs
index 482ba03670ccb5c2b29f9d17f0af40d558c11d75..815df52265eb28f3880705af82f851c135ec2c5b 100644 (file)
@@ -1,32 +1,15 @@
-//
-// Sample for bug 75674
-//
 using System;
-using System.Collections;
 
-class XX {
-       static void Metodo (Exception e)
+class C
+{
+       public static int Main ()
        {
-               if (e is NotImplementedException){
-                       Console.WriteLine ("OK");
-               } else {
-                       Console.WriteLine ("Fail");
-               }
-       }
-       
-       static IEnumerable X ()
-       {
-               try {
-                       throw new NotImplementedException ();
-               } catch (Exception e){
-                       Metodo (e);
-               }
-               yield return 0;
-       }
-       
-       static void Main ()
-       {
-               foreach (int a in X ()){
+               const string s = "oups";
+               if (s.Length != 4) {
+                       Console.WriteLine (s.Length);
+                       return 2;
                }
+               
+               return 0;
        }
 }