Merge pull request #3545 from ntherning/throw-AbandonedMutexException-on-unix
[mono.git] / mcs / errors / cs0029-4.cs
index 4141001200a28cc1ea6cf36e2d4fd82277a995e4..4cf0b82868e3ca40ecbe5276ce269ac9a958042b 100644 (file)
@@ -1,10 +1,13 @@
+// CS0029: Cannot implicitly convert type `string' to `System.Runtime.InteropServices.CallingConvention'
+// Line: 10
+
 using System;
 using System.Runtime.InteropServices;
 
 namespace Tsunami {
   public sealed class Gl {
 
-    [DllImport("libGL.so", EntryPoint="glCopyTexSubImage3D", CallingConvention="cdecl", ExactSpelling=true), SuppressUnmanagedCodeSecurity]
+    [DllImport("libGL.so", EntryPoint="glCopyTexSubImage3D", CallingConvention="cdecl", ExactSpelling=true)]
     public static extern void CopyTexSubImage3D ();
 
   }