[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / tests / gtest-exmethod-17.cs
1 // Compiler options: -r:gtest-exmethod-17-lib.dll
2
3 using System;
4 using Testy;
5
6 public static class MainClass
7 {
8         public static void Main ()
9         {
10                 Object o = new Object ();
11                 Console.WriteLine (o.MyFormat ("hello:{0}:{1}:", "there", "yak"));
12         }
13 }
14