"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1593-4.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);