Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-161.cs
index c538f6bd93d9052ab91e426b0020a4fc2fd6b088..6f119fa124f015020a8f6072c8b917b2f870f712 100644 (file)
@@ -1,13 +1,18 @@
 // Compiler options: -r:gtest-161-lib.dll
-public class App {
-  public static void Main() {
-    string s = apply<int, string>(3,
-                                  delegate (int x) {
-                                    return x.ToString(); });
-    int y = apply<int, int>(3, FP.identity<int>);
-  }
 
-  static U apply<T, U>(T obj, FP.Mapping<T, U> f) {
-    return f(obj);
-  }
+public class App
+{
+       public static void Main ()
+       {
+               string s = apply<int, string> (3, delegate (int x) {
+                       return x.ToString ();
+               });
+
+               int y = apply<int, int> (3, FP.identity<int>);
+       }
+
+       static U apply<T, U> (T obj, FP.Mapping<T, U> f)
+       {
+               return f (obj);
+       }
 }