summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1558.cs
blob: 06bd46ada559f39f35d6b9f72d4b9d499b5f28cf (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1558: `MainClass' does not have a suitable static Main method
// Line: 5
// Compiler options: -main:MainClass

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