summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-optional-26.cs
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;
	}
}