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

cs1555.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4f39fde691220fa10aabde7daeaaab77d67dc7b (plain)
1
2
3
4
5
6
7
8
9
10
// cs1555.cs: Could not find 'DoesNotExist' specified for Main method
// Line: 0
// Compiler options: -main:DoesNotExist

public class MainTest
{
	public static void Main (string[] args)
	{
	}
}