[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0029-4.cs
blob4cf0b82868e3ca40ecbe5276ce269ac9a958042b
1 // CS0029: Cannot implicitly convert type `string' to `System.Runtime.InteropServices.CallingConvention'
2 // Line: 10
4 using System;
5 using System.Runtime.InteropServices;
7 namespace Tsunami {
8 public sealed class Gl {
10 [DllImport("libGL.so", EntryPoint="glCopyTexSubImage3D", CallingConvention="cdecl", ExactSpelling=true)]
11 public static extern void CopyTexSubImage3D ();