Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-290.cs
index 905fc6a706f6b9c0c98b34a36f9226b424f65c05..76c7d2c1e7dcca3ebc175fed6f1872b4f2582cd4 100644 (file)
@@ -6,7 +6,7 @@ class EntryPoint {
        delegate void EventHandler (object sender);
        static event EventHandler FooEvent;
        static void bar_f (object sender) {}
-       static void Main () {
+       public static void Main () {
                if (FooEvent != null)
                        FooEvent (null);
                object bar = new EventHandler (bar_f);