summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0028-2.cs
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;
        }
}