Merge pull request #4998 from kumpera/fix_56684
[mono.git] / mcs / tests / gtest-148.cs
1 using System;
2
3 static class Test1 {
4   public class IOp<T> { }
5   static void Foo<S,OP>(uint v) where OP : IOp<S> { }
6 };
7
8 static class Test2 {
9   public class IOp<T> { }
10   static void Foo<T,OP>(uint v) where OP : IOp<T> { }
11 };
12
13 class X
14 {
15         public static void Main ()
16         { }
17 }