[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-496.cs
blobb9660338c6b075dbb0bb8675736544b87cd8aa22
1 using System;
3 abstract class Base
5 internal static T EndExecute<T> (object source, string method) where T : Base
7 return null;
11 class Derived : Base
13 internal static Derived EndExecute<TElement> (object source)
15 return null;
19 class a
21 public static int Main ()
23 Derived.EndExecute<Derived> (null, "something");
24 return 0;