Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0266-3.cs
1 // CS0266: Cannot implicitly convert type `object' to `System.Collections.ArrayList'. An explicit conversion exists (are you missing a cast?)
2 // Line: 12
3
4 using System.Collections;
5
6 class X
7 {
8         static Hashtable h = new Hashtable ();
9
10         public static void Main ()
11         {
12                 ArrayList l = h ["hola"] = new ArrayList ();
13         }
14 }