Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1503-8.cs
1 // CS1503: Argument `#1' cannot convert `method group' expression to type `IInterface'
2 // Line: 15
3
4 public delegate void Del ();
5
6 public interface IInterface
7 {
8         void Do ();
9 }
10
11 public static class Test
12 {
13         public static void Do (IInterface val)
14         {
15                 Do (val.Do);
16         }
17 }