[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1501-11.cs
bloba81fa49b0609645acbcfbc3b9eae35d0993e4885
1 // CS1501: No overload for method `XCreateIC' takes `1' arguments
2 // Line: 16
4 using System;
5 using System.Runtime.InteropServices;
7 namespace System.Windows.Forms
9 internal class X11Xim
11 [DllImport ("libX11", EntryPoint="XCreateIC")]
12 internal extern static IntPtr XCreateIC(IntPtr xim, __arglist);
14 public static void Main ()
16 XCreateIC (IntPtr.Zero);