linux-packaging-mono/mcs/tests/gtest-optional-26.cs

17 lines
228 B
C#
Raw Normal View History

// 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;
}
}