2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs1593.cs
blob989ea2de6b7794ebb7ebb449c1e032a649b27d5d
1 // CS1593: Delegate `System.Action<int>' does not take `2' arguments
2 // Line: 13
4 using System;
6 public class Test
8 public static void Main ()
10 Action<int> a = (i) => {};
12 dynamic d = 1;
13 a (d, true);