Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-504-lib.cs
1 // Compiler options: -t:library
2
3 public class A<TB, TC> where TC : A<TB, TC> { }
4 public class B<TC> where TC : A<B<TC>, TC> { }