Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0029-7.cs
1 // CS0029: Cannot implicitly convert type `void' to `object'
2 // Line: 12
3
4 using System;
5 using System.Collections;
6
7 public class Test
8 {
9         static void Main ()
10         {
11                 Hashtable ht = new Hashtable ();
12                 ht ["a"] = Run ("Appointments");
13         }
14
15         public static void Run (string unit)
16         {
17         }
18 }