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: ef492792e83c83363e3687023e2d651b7e6b4a2f (plain)
1
2
3
4
5
6
7
8
9
// cs0017.cs: Program `cs0017.exe' has more than one entry point defined: `X.Main()'
// Line: 7
class X {
static void Main () {}
}
class Y {
static void Main () {
}
}