2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-496.cs
blobd8d283d209b1a310dbbfe1ba5eecb846278b08fd
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 static int Main ()
23 Derived.EndExecute<Derived> (null, "something");
24 return 0;