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

gtest-109.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec3ff5280dc1e5692207d691d1a8d7f16881d930 (plain)
1
2
3
4
5
6
7
8
9
using System;

class X {
	public static void Main ()
	{
		int [] foo = null;
		Array.Resize (ref foo, 10);
	}
}