Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / errors / cs1501-11.cs
1 // CS1501: No overload for method `XCreateIC' takes `1' 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);
17                 }
18         }
19 }
20
21