Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0028.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cbf73f5130a26209fb842454043e1bf07cda81e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0028: has the wrong signature to be an entry point
// Line: 8

class T {
        public static int Main ()
        {
        }
        public static int Main (int foo)
        {
        }
}