2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0737-3.cs
blobaaf15167aac222663faaa0201c89a55de5f93875
1 // CS0737: `MySubClass' does not implement interface member `I.Foo.set' and the best implementing candidate `MyTest.Foo.set' in not public
2 // Line: 6
4 using System;
6 interface I
8 int Foo { get; set; }
11 public class MySubClass : MyTest, I
15 public class MyTest
17 public int Foo
19 get { return 1; }
20 protected set { }