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>2012-12-03 21:00:37 +0400
committerMarek Safar <marek.safar@gmail.com>2012-12-03 21:01:25 +0400
commitf75470516c0a9e61dab20b21a4bfcf7d17f88c9c (patch)
treea58733edc6add23e0cabc16bd9619c58f58ec1c4 /mcs/tests/test-269.cs
parent9f899548c8707bd67ddb9ca4d3fd566801caebfa (diff)
Make Main method public
Diffstat (limited to 'mcs/tests/test-269.cs')
-rw-r--r--mcs/tests/test-269.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tests/test-269.cs b/mcs/tests/test-269.cs
index 3b4eca84513..2720cbb8fc8 100644
--- a/mcs/tests/test-269.cs
+++ b/mcs/tests/test-269.cs
@@ -135,7 +135,7 @@ class Class1
return new Result (result);
}
- static int Main (string[] args)
+ public static int Main (string[] args)
{
int result = AddABunchOfInts (__arglist ( 2, 3, 4 ));
Console.WriteLine ("Answer: {0}", result);