[runtime] Fix DISABLE_REFLECTION_EMIT build.
[mono.git] / mono / tests / shift.cs
1 using System;
2                    
3 class Test {
4         public static int Main () {
5                 int [] n = new int [1];
6                 int b = 16;
7                    
8                 n [0] = 100 + (1 << (16 - b));
9                 Console.WriteLine (n [0]);
10
11                 if (n [0] != 101)
12                         return 1;
13
14                 return 0;
15         }
16 }
17