[msbuild] Bump msbuild to pick up SDK updates (#5548)
[mono.git] / mcs / tests / gtest-lambda-15.cs
index f4177514107618a8398763e69376e2b0df129007..d4844153b315e1f283eab75b876a601f2fa5fcf9 100644 (file)
@@ -34,7 +34,7 @@ static class Enumerable
 class Repro
 {
 
-       static int Main ()
+       public static int Main ()
        {
                var sum = new [] { "1", "2", "3", "4", "5", "6", "7" }.Sum ((s) => int.Parse (s));
                if (sum != 28)