Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs1593-3.cs
1 // CS1593: Delegate `System.Func<int,int>' does not take `2' arguments
2 // Line: 11
3
4
5 using System;
6
7 class C
8 {
9         static void Main (string [] args)
10         {
11                 M ((x, y) => 2);
12         }
13
14         static void M (Func<int, int> a)
15         {
16         }
17 }