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

error-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e00a3f6c7e1bfca44dfd5cedd1c1fd3ae67cb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections;

class X
{
	static Hashtable h = new Hashtable ();

	public static void Main ()
	{
		// CS0029
		ArrayList l = h ["hola"] = new ArrayList ();
	}
}