eol
[mcs.git] / tests / gtest-148.cs
blobbe06afa96a2473a840f166dbed4575b9f755c3ac
1 using System;
3 static class Test1 {
4 public class IOp<T> { }
5 static void Foo<S,OP>(uint v) where OP : IOp<S> { }
6 };
8 static class Test2 {
9 public class IOp<T> { }
10 static void Foo<T,OP>(uint v) where OP : IOp<T> { }
13 class X
15 static void Main ()
16 { }