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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-618.cs
blob
7361796e006ad6130b351dbe425d4ef59641ce02
1
using
System
;
2
3
class
C
4
{
5
//
6
// All the operations should be reduced
7
//
8
public void
ZeroBasedReductions
()
9
{
10
int
a
=
1
;
11
12
a
=
a
+
0
;
13
a
=
a
-
0
;
14
15
a
=
a
>>
0x40
;
16
}
17
18
public static void
Main
()
19
{
20
}
21
}
22
23