Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-293.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class Test<T>
5 {
6         public void Invalid (T item)
7         {
8                 Other (new T[] {item});
9         }
10
11         public void Other (IEnumerable<T> collection)
12         {
13         }
14 }
15
16 class X
17 {
18         static void Main ()
19         { }
20 }