Updated with review feedback.
[mono.git] / mcs / errors / cs0029-4.cs
1 // CS0029: Cannot implicitly convert type `string' to `System.Runtime.InteropServices.CallingConvention'
2 // Line: 10
3
4 using System;
5 using System.Runtime.InteropServices;
6
7 namespace Tsunami {
8   public sealed class Gl {
9
10     [DllImport("libGL.so", EntryPoint="glCopyTexSubImage3D", CallingConvention="cdecl", ExactSpelling=true)]
11     public static extern void CopyTexSubImage3D ();
12
13   }
14 }
15