[Mono.Profiler.Log] Support MLPD version 13
[mono.git] / mcs / tests / gtest-optional-26.cs
1 // Compiler options: -r:gtest-optional-26-lib.dll
2
3 using System;
4
5 public class C
6 {
7         public static int Main ()
8         {
9                 var res = CallerTest.Foo ();
10                 if (res != 0) {
11                         Console.WriteLine (res);
12                         return res;
13                 }
14                 
15                 return 0;
16         }
17 }