Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-432.cs
1 namespace Test
2 {
3         public class Bar<T, U>
4         {
5                 public void DoSomething<V> () where V : U
6                 {
7                 }
8         }
9
10         public class Baz
11         {
12                 public void GetInTroubleHere ()
13                 {
14                         var bar = new Bar<string, string> ();
15                         bar.DoSomething<string> ();
16                 }
17                 
18                 public static void Main ()
19                 {
20                 }
21         }
22 }
23