Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-245.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1143a9dca561e3fa4429fe6cf5a894cc4a9af951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
public class Class2 
{
	private AliasDefOperations __delegate;

	public string def_kind {
		get {
			return __delegate.def_kind;
		}
	}

	public static void Main ()
	{ }
}

public interface AliasDefOperations : ContainedOperations, IDLTypeOperations 
{
}

public interface ContainedOperations : IRObjectOperations 
{
}

public interface IDLTypeOperations : IRObjectOperations 
{
}

public interface IRObjectOperations
{
   string def_kind { get; }
}