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

dtest-049.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f74984b24fbd12439c7c4e9c0679290212c0276 (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
public class A
{
	public class N : B.N
	{
	}
}

public class B
{
	public class N
	{
		public void Test ()
		{
		}
	}
}

class C
{
	public static void Main ()
	{
		dynamic n = new A.N ();
		n.Test ();
	}
}