Merge pull request #5675 from mono/glib-debug-symbols
[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