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

gtest-495.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5f2ce12d13403d256fa3c8e1a4b536355299555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Repro
{
	class Outer
	{
		public class Inner<T> where T : class
		{
			public static T[] Values;
		}
	}
	public static void Main ()
	{
		Outer.Inner<string>.Values = new string[0];
	}
}