Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0686.cs
blob7bf36692c7738bf323488bd4654481a9abf710c5
1 // CS0686: Accessor `C.Method.get' cannot implement interface member `I.get_Method()' for type `C'. Use an explicit interface implementation
2 // Line: 13
4 interface I
6 int get_Method ();
9 class C: I
11 public int Method
13 get { return -1; }