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

gtest-481.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a51fe7c3449db71b2ac77730d44aae78527addd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class TestClass<T>
{
	private T[][] m_data;

	public TestClass (int arrSize)
	{
		Add (ref m_data);
	}

	private static void Add (ref T[][] arr)
	{
	}
}

class C
{
	public static void Main ()
	{
		new TestClass<decimal> (4);
	}
}