[amd64] Save missing register
[mono.git] / mcs / errors / cs0540-2.cs
1 // CS0540: `N.Nested.C.I.P': containing type does not implement interface `N.Nested.I'
2 // Line: 17
3
4 using System;
5
6 namespace N
7 {
8         class Nested
9         {
10                 public interface I
11                 {
12                         bool P { get; }
13                 }
14
15                 public class C
16                 {
17                         bool I.P
18                         {
19                                 get { return true; }
20                         }
21                 }
22         }
23 }