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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-933.cs
blob
2f076ebd25426df4ed08dbc65d171c985b7e8761
1
using
System
;
2
3
class
X
4
{
5
static int
Foo
(
params
X
[]
p
)
6
{
7
return
1
;
8
}
9
10
static int
Foo
(
object
p
)
11
{
12
return
0
;
13
}
14
15
static int
Main
()
16
{
17
if
(
Foo
((
X
[])
null
) !=
1
)
18
return
1
;
19
20
return
0
;
21
}
22
}