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

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

namespace FLMID.Bugs.Marshal15
{
	public class D : C
	{
		public D()
		{
			_layout = new X();
		}
		public static void Main(string[] args)
		{
			System.Console.WriteLine("OK");
		}
	}
}