Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[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> { }