2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0540-2.cs
blobe9dc84a3eabe2532f9ba605f5857dcb87e31a9c5
1 // CS0540: `N.Nested.C.I.P': containing type does not implement interface `N.Nested.I'
2 // Line: 17
4 using System;
6 namespace N
8 class Nested
10 public interface I
12 bool P { get; }
15 public class C
17 bool I.P
19 get { return true; }