Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-311.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7a3f69340b4fe7153991e0f2a65dd49801378d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Compiler options: -t:library

using System;
using System.Runtime.InteropServices;

class A
{
	[DllImport ("Dingus", CharSet=CharSet.Auto)]
	extern static void Do<T> ();

	[DllImport ("Dingus")]
	extern static void Do2<T> ();

	static void Main ()
	{

	}
}