2004-07-17 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / error-6.cs
1 using System.Collections;
2
3 class X
4 {
5         static Hashtable h = new Hashtable ();
6
7         public static void Main ()
8         {
9                 // CS0029
10                 ArrayList l = h ["hola"] = new ArrayList ();
11         }
12 }