Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2010-03-16 17:55:05 +0300
committerMarek Safar <marek.safar@gmail.com>2010-03-16 17:55:05 +0300
commit0fadfc5c04c5d9101dd076fe71b2559fdd74a210 (patch)
treebf89227c1ef581a5fecd9fcb8ab62406ef876abb /mcs/tests/gtest-232.cs
parentb97394eda48aab92f1f3bcecc2eb563423c0e516 (diff)
parent024e8f7cd71f033df6df95f659d12bdaf5846ee1 (diff)
New tests.
svn path=/trunk/mcs/; revision=153684
Diffstat (limited to 'mcs/tests/gtest-232.cs')
-rw-r--r--mcs/tests/gtest-232.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/mcs/tests/gtest-232.cs b/mcs/tests/gtest-232.cs
deleted file mode 100644
index 8b01949507d..00000000000
--- a/mcs/tests/gtest-232.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-public class H
-{
- public static void Main(String[] args) { }
-
- public static IEnumerable<T> Merge<T> (IEnumerator<T> xEtor)
- where T : IComparable<T>
- {
- int order = xEtor.Current.CompareTo (xEtor.Current);
- yield return xEtor.Current;
- }
-}