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: 8f57c2f430cd6783a640d2505bb7e33d0eabae9d (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0028-2.cs: `T.Main()' has the wrong signature to be an entry point
// Line: 6
// Compiler options: -warnaserror -warn:4

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