Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-337.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c3dd26c7c179c9b74ee98584a76e7b9385f2ed7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


using System;

class X {
        static void SetValue<T> (object o, T x)
        {
        }

        public static void Main ()
        {
                object o = null;
                double [] d = null;

                SetValue (o, d);
        }
}