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: 591797ec93ec41279f90f21f83697263ceac1415 (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);
}