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

gtest-315.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0de4e866b470ae71ed5d9f4b0883bc1661a278e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Bug #80731
public partial class A<T>
{
	public class B {}
}

public partial class A<T>
{
	public B Test;
}

class X
{
	public static void Main ()
	{
		A<int> a = new A<int> ();
		a.Test = new A<int>.B ();
	}
}