2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / gen-49.cs
1 // Important test: compare this to gcs0408-*.cs; these are the allowed cases.
2
3 class X<T>
4 {
5         void A (T t)
6         { }
7
8         void A (T[] t)
9         { }
10
11         void A (T[,] t)
12         { }
13
14         void A (T[][] t)
15         { }
16
17         void B (T[] t)
18         { }
19
20         void B (int t)
21         { }
22
23         void C (T[] t)
24         { }
25
26         void C (T[,] t)
27         { }
28
29         void C (int[,,] t)
30         { }
31
32         void D (int x, T y)
33         { }
34
35         void D (T x, long y)
36         { }
37 }
38
39 class Foo
40 {
41         static void Main ()
42         { }
43 }