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-277.cs
blob
720b787fb1a582dbb2c5ab01e24b8ba3d55822bb
1
// test for bug #56774
2
3
class
T
{
4
public static int
Main
() {
5
return
X
(
1
);
6
}
7
8
static int
X
(
byte
x
) {
9
return
0
;
10
}
11
static int
X
(
short
x
) {
12
return
1
;
13
}
14
}