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: 01cd5edcaeb51b6f1ca161761813d64183147573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0028: has the wrong signature to be an entry point
// Line: 8
// Compiler options: -warnaserror -warn:4

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