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>2008-09-03 16:19:32 +0400
committerMarek Safar <marek.safar@gmail.com>2008-09-03 16:19:32 +0400
commit79db40a12a1ff5250d047851f5d18010c075c4c0 (patch)
tree4b8230e74e5c69b05909989d445fd345ec850f95 /mcs/tests/gtest-iter-08.cs
parent28b3861c5716ce16b593d6c370620a807be953ee (diff)
Updated.
svn path=/trunk/mcs/; revision=112173
Diffstat (limited to 'mcs/tests/gtest-iter-08.cs')
-rwxr-xr-xmcs/tests/gtest-iter-08.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/mcs/tests/gtest-iter-08.cs b/mcs/tests/gtest-iter-08.cs
index 8b93bfff599..487d4edad85 100755
--- a/mcs/tests/gtest-iter-08.cs
+++ b/mcs/tests/gtest-iter-08.cs
@@ -15,7 +15,6 @@ class App
public static IEnumerable QueryEnumerable<T> ()
{
- Console.WriteLine ("Type: " + typeof(T));
- yield break;
+ yield return "Type: " + typeof(T);
}
}