[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0542-2.cs
1 // CS0542: `Program.Program(object)': member names cannot be the same as their enclosing type
2 // Line: 6
3
4 class Program
5 {
6         void Program (object sender)
7         {
8         }
9 }
10