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: 44ee1335e43437d73d9254778d1f22439f70c6ea (plain)
1
2
3
4
5
6
7
8
9
10
// CS1555: Could not find `DoesNotExist' specified for Main method
// Line: 0
// Compiler options: -main:DoesNotExist

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