repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[configure] Add new target.
[mono-project.git]
/
mcs
/
tests
/
gtest-049.cs
blob
1cbe951de61001e78cd9c6e180dacbfc787895e8
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
public static void
Main
()
42
{ }
43
}