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

cs1556.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12fecd0892a614898ba10b08a3c59db8ab11c02b (plain)
1
2
3
4
5
6
7
8
// cs1555.cs: 'MainTest' specified for Main method must be a valid class or struct
// Line: 0
// Compiler options: -main:MainTest

public interface MainTest
{
	void Main (string[] args);
}