[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-variance-13.cs
blob34e4a1dc13ad06a33a3247cff48173c6e606e74b
1 using System;
2 using System.Collections.Generic;
4 interface I<in T>
8 class A
10 static void Foo<T> (T a, IList<T> c)
14 public static void Test ()
16 Foo ("aaaa", new object[0]);
20 class B
22 static void Foo<T> (T a, I<T> c)
26 static void Test<U> (U u, I<U> x)
28 Foo (u, x);
32 class M
34 public static int Main ()
36 return 0;