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

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

using System;

public class C
{
	public static int Main ()
	{
		var res = CallerTest.Foo ();
		if (res != 0) {
			Console.WriteLine (res);
			return res;
		}
		
		return 0;
	}
}