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: 7c06b609ab7fd53435b9f56539ce05e279d36438 (plain)
1
2
3
4
5
6
7
8
// CS1555: `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);
}