Merge pull request #4431 from vkargov/vk-leaking-points
[mono.git] / mcs / tests / test-245.cs
1 public class Class2 
2 {
3         private AliasDefOperations __delegate;
4
5         public string def_kind {
6                 get {
7                         return __delegate.def_kind;
8                 }
9         }
10
11         public static void Main ()
12         { }
13 }
14
15 public interface AliasDefOperations : ContainedOperations, IDLTypeOperations 
16 {
17 }
18
19 public interface ContainedOperations : IRObjectOperations 
20 {
21 }
22
23 public interface IDLTypeOperations : IRObjectOperations 
24 {
25 }
26
27 public interface IRObjectOperations
28 {
29    string def_kind { get; }
30 }