2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0470.cs
blob7a814cedd87ba07af1f43df8b06b09f8ccfb9e83
1 // cs0470.cs: Method `C.get_P()' cannot implement interface accessor `I.P.get'
2 // Line: 11
4 interface I
6 int P { get; }
9 class C : I
11 public int get_P ()
13 return 1;