aboutsummaryrefslogtreecommitdiffstats
path: root/t/t4018/csharp-method-generics-alternate-spaces
blob: 9583621743064aa80f75047574f49ba0baec6467 (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;
    }
}