[Microsoft.CSharp] Replaced with CoreFX implementation
[mono.git] / mcs / tests / gtest-optional-20.cs
1 using System;
2
3 public class C
4 {
5          static void Test<T>(T value, Func<object, T> postProcessor = null)
6         {
7         }
8         
9         public static int Main ()
10         {
11                 Test ("");
12                 return 0;
13         }
14 }
15