repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
tests
/
gtest-049.cs
blob
e5e8699d292727dc42e80d550f97945252d188b9
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
}