[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-342.cs
1 class Base<T> where T : Base<T>
2 {
3         public static implicit operator T (Base<T> t)
4         {
5                 return (T) t;
6         }
7 }
8
9 class TestMain {
10         public static void Main (string [] args)
11         {
12         }
13 }
14