a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
314 B
C#
28 lines
314 B
C#
using System;
|
|
|
|
class C<T>
|
|
{
|
|
}
|
|
|
|
class A
|
|
{
|
|
public static void Main ()
|
|
{
|
|
M1 ((int[][] arg) => { });
|
|
M2 ((C<short>[] arg) => { });
|
|
M3 ((C<short[]>[] arg) => { });
|
|
}
|
|
|
|
static void M1<T> (Action<T[][]> arg)
|
|
{
|
|
}
|
|
|
|
static void M2<T> (Action<C<T>[]> arg)
|
|
{
|
|
}
|
|
|
|
static void M3<T> (Action<C<T[]>[]> arg)
|
|
{
|
|
}
|
|
}
|