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
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-850.cs
blob
5a70c9912322495e38ae7873534d974ceee8a0c5
1
class
C
2
{
3
public static int
Main
()
4
{
5
if
(
F
(
"x"
) !=
1
)
6
return
1
;
7
8
return
0
;
9
}
10
11
static int
F
(
string
s
,
params string
[]
strings
)
12
{
13
return
1
;
14
}
15
16
static int
F
(
params string
[]
strings
)
17
{
18
return
2
;
19
}
20
}