Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-optional-10.cs
1 public class Program
2 {       
3         static void Main()
4         {
5                 new Program<object>();
6         }
7 }
8
9 public class Program<T>
10 {
11         public Program(Generic<T> generic = null)
12         {
13         }
14 }
15
16 public class Generic<T>
17 {       
18 }