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:
authorRaja R Harinath <harinath@hurrynot.org>2004-12-03 15:25:11 +0300
committerRaja R Harinath <harinath@hurrynot.org>2004-12-03 15:25:11 +0300
commit05594abaa173ab5df7332da2ca4a7ce58c48f47c (patch)
treead2de4dc41e204a2afd7b6ccb86e918b6319d3c4 /mcs/tests/test-326.cs
parente7349ddfca1429e3c75a63b23eb611d74916ce0e (diff)
* test-326.cs (Main): Set return type to int, not void.
svn path=/trunk/mcs/; revision=37006
Diffstat (limited to 'mcs/tests/test-326.cs')
-rw-r--r--mcs/tests/test-326.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-326.cs b/mcs/tests/test-326.cs
index 5bbed5bae3f..5bb9a0f525d 100644
--- a/mcs/tests/test-326.cs
+++ b/mcs/tests/test-326.cs
@@ -6,7 +6,7 @@ public delegate double Mapper (int item);
class X
{
- static void Main ()
+ static int Main ()
{
Mapper mapper = new Mapper (delegate (int i){
return i * 12; });