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
add comment
[mcs.git]
/
tests
/
test-129.cs
blob
11cf4b70e2c20654cba3f5511e36de535c997986
1
//
2
// Check unary minus.
3
//
4
using
System
;
5
6
class
X
{
7
8
static int
Main
()
9
{
10
short
a
= -
32768
;
11
int
b
= -
2147483648
;
12
long
c
= -
9223372036854775808
;
13
sbyte
d
= -
128
;
14
15
return
0
;
16
}
17
}