2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mcs / tests / test-618.cs
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