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
/
cs0023-9.cs
blob
a0df90fcbb16dd6b7f76cb9d5e413a9e12e54d6f
1
// cs0023: The `-' operator cannot be applied to operand of type `ulong'
2
// Line : 6
3
4
class
X
{
5
const ulong
a
=
2
;
6
const int
b
= -
a
;
7
}
8
9
10