aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-method-generics
blob: b3216bfb2a7405b5793a7316e0a42002ccf7968f (plain)
1
2
3
4
5
6
7
8
9
10
11
class Example<T1, T2>
{
    Example<int, string> Method<TA, TB>(TA RIGHT, TB b)
    {
        // Filler
        // Filler
        
        // ChangeMe
        return null;
    }
}