[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0102-3.cs
1 // CS0102: The type `ErrorClass' already contains a definition for `Method'
2 // Line: 6
3
4 public class ErrorClass {
5         protected int Method () { return 2; }
6         public bool Method;
7 }