[System]: SslStream.Flush() now flushes the underlying stream. Bug #57528. (#5569)
[mono.git] / mcs / tests / test-debug-11.cs
index 187bc044d79bed98ab4bbc66cf0038e4266f04b3..1f01bdd784acfd574c9fedc7cd9e74826dbbe414 100644 (file)
@@ -235,8 +235,9 @@ class C
        
        void ForEach (int[] args)
        {
-               foreach (var a
-                       in args)
+               foreach (
+               var a
+               in args)
                {
                }
        }
@@ -260,4 +261,13 @@ class C
                {
                }
        }
+       
+       void ForEach_4 (int[,] args)
+       {
+               foreach (
+               var a
+               in args)
+               {
+               }
+       }
 }