Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / gtest-337.cs
1
2
3 using System;
4
5 class X {
6         static void SetValue<T> (object o, T x)
7         {
8         }
9
10         public static void Main ()
11         {
12                 object o = null;
13                 double [] d = null;
14
15                 SetValue (o, d);
16         }
17 }