2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0266-3.cs
blob85e3f50e39047653f9292a93a216557152d0163c
1 // cs0266.cs: Cannot implicitly convert type `object' to `System.Collections.ArrayList'. An explicit conversion exists (are you missing a cast?)
2 // Line: 12
4 using System.Collections;
6 class X
8 static Hashtable h = new Hashtable ();
10 public static void Main ()
12 ArrayList l = h ["hola"] = new ArrayList ();