Merge pull request #5560 from kumpera/wasm-work-p3
[mono.git] / mcs / tests / gtest-552-lib.cs
index 5e290eaafd5c6e58ce1ddb2b48d438b4d926355a..4263ee6a2326ea5ecd803c18fe04d67239deb021 100644 (file)
@@ -15,3 +15,14 @@ public class G<T> where T : G<T>.GPD
                }
        }
 }
+
+public class H<T>
+{
+       public class N<U, V> where U : H<T> where V : H<T>.M<V>
+       {
+       }
+       
+       public class M<X>
+       {
+       }
+}