summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0028.cs
blob: 68fcf4ad8d3546c2f2c922437d56fc5e680b4455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0028: `T.Main(int)' 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)
        {
        }
}