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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0019-28.cs
blob
85cf7b91b9f754eb40b8eb47c20a06c4fa260dbb
1
// CS0019: Operator `>=' cannot be applied to operands of type `ulong' and `sbyte'
2
// Line: 7
3
4
class
X
{
5
bool
ret
(
ulong
u
,
sbyte
s
)
6
{
7
return
(
u
>=
s
);
8
}
9
}