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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0019-9.cs
blob
4915f42084c098680c68d5a023e97c1c07c3d38a
1
// CS0019: Operator `!=' cannot be applied to operands of type `ulong?' and `int'
2
// Line: 8
3
4
class
C
5
{
6
static void
Test
(
ulong
?
x
,
int
y
)
7
{
8
if
(
x
!=
y
)
9
{
10
}
11
}
12
}