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

cs0542-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd320cefe3de02910d2ae59ae5fa5588ba6d0a15 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0542: `Program.Program(object)': member names cannot be the same as their enclosing type
// Line: 6

class Program
{
	void Program (object sender)
	{
	}
}