dlr bug
[mcs.git] / tests / gtest-049.cs
blobe5e8699d292727dc42e80d550f97945252d188b9
1 // Important test: compare this to gcs0408-*.cs; these are the allowed cases.
3 class X<T>
5 void A (T t)
6 { }
8 void A (T[] t)
9 { }
11 void A (T[,] t)
12 { }
14 void A (T[][] t)
15 { }
17 void B (T[] t)
18 { }
20 void B (int t)
21 { }
23 void C (T[] t)
24 { }
26 void C (T[,] t)
27 { }
29 void C (int[,,] t)
30 { }
32 void D (int x, T y)
33 { }
35 void D (T x, long y)
36 { }
39 class Foo
41 static void Main ()
42 { }