2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0029-7.cs
blobdb51b615eaccc825b0b6b349003f3ba6734516c9
1 // CS0029: Cannot implicitly convert type `void' to `object'
2 // Line: 12
4 using System;
5 using System.Collections;
7 public class Test
9 static void Main ()
11 Hashtable ht = new Hashtable ();
12 ht ["a"] = Run ("Appointments");
15 public static void Run (string unit)