Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs1502-5.cs
1 // CS1502:  The best overloaded method match for `System.Windows.Forms.X11Xim.XCreateIC(System.IntPtr, __arglist)' has some invalid arguments
2 // Line: 16
3
4 using System;
5 using System.Runtime.InteropServices;
6
7 namespace System.Windows.Forms
8 {
9         internal class X11Xim
10         {
11                 [DllImport ("libX11", EntryPoint="XCreateIC")]
12                 internal extern static IntPtr XCreateIC(IntPtr xim, __arglist);
13
14                 public static void Main ()
15                 {
16                         XCreateIC (IntPtr.Zero, IntPtr.Zero);
17                 }
18         }
19 }
20
21