[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-263.cs
blobff7870fc29331ffb22e2f0bd041f1cfea7047441
1 using System;
2 using System.Collections.Generic;
4 class Foo<S>
6 public ICloneable Test (S t)
8 return (ICloneable) t;
12 public static class ConvertHelper
14 public static IEnumerator<T> Test<S,T> (S s)
15 where T : S
17 yield return (T) s;
20 public static void Main ()
21 { }