2009-02-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-618.cs
blob7361796e006ad6130b351dbe425d4ef59641ce02
1 using System;
3 class C
5 //
6 // All the operations should be reduced
7 //
8 public void ZeroBasedReductions ()
10 int a = 1;
12 a = a + 0;
13 a = a - 0;
15 a = a >> 0x40;
18 public static void Main ()