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

cs0017.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f27726b16dd40e038d67ec778489171bd1c2113 (plain)
1
2
3
4
5
6
7
8
9
// cs0017.cs: Program has more than one entry point
// Line: 7
class X {
static void Main () {}
}
class Y {
static void Main () {
}
}