Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-504-lib.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75ab7feb8b071f7d0bb62b1ffec31d5630c5b35a (plain)
1
2
3
4
// Compiler options: -t:library

public class A<TB, TC> where TC : A<TB, TC> { }
public class B<TC> where TC : A<B<TC>, TC> { }