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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0019-29.cs
blob
e5fbf900eee6c6f98f06c19c6e18139a675a3564
1
// CS0019: Operator `>=' cannot be applied to operands of type `ulong' and `short'
2
// Line: 7
3
4
class
X
{
5
bool
ret
(
ulong
u
,
short
s
)
6
{
7
return
(
u
>=
s
);
8
}
9
}