[mcs] Remove unknown warnings reporting to match latest csc
[mono.git] / mcs / errors / cs0652-4.cs
1 // CS0652: A comparison between a constant and a variable is useless. The constant is out of the range of the variable type `short'
2 // Line: 11
3 // Compiler options: /warn:2 /warnaserror
4 using System;
5
6 public class CS0652 {
7
8         public static void Main () 
9         {
10                 short us = 0;
11                 if (us == -10000000)
12                         Console.WriteLine (":(");
13                 else
14                         Console.WriteLine (":)");
15         }
16 }
17