2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-263.cs
blob4911dcd8798a724b8d899c69e38c6580bcde75a9
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 static void Main ()
21 { }