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

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

class T {
        public static bool Main ()
        {
            return false;
        }
}