interface I { int Some { get; set; } } class C : I { public int Some { get { return 0; } } }
Try applying the context action to I.Prop. Says: no places were found to implement this member.