[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0017.cs
1 // CS0017: Program `cs0017.exe' has more than one entry point defined: `X.Main()'
2 // Line: 7
3 class X {
4 static void Main () {}
5 }
6 class Y {
7 static void Main () {
8 }
9 }