3 public static void Main () { }
5 static void Foo
<T
> (ref T t
) { }
6 static void Foo
<T
> (T
[] t
) { }
7 static void Foo
<T
> (T
[,] t
) { }
8 static void Foo
<T
> (T
[, ,] t
) { }
10 static void Bar (ref int t
) { }
11 static void Bar (int[] t
) { }
12 static void Bar (int[,] t
) { }
13 static void Bar (int[, ,] t
) { }