* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / cs0652-4.cs
blob44e70339ce11f5b441e61ba1d813a08687ddd8f0
1 // cs0652-4.cs : Comparison to integral constant is useless; the constant is outside the range of type `short'
2 // Line: 11
3 // Compiler options: /warn:2 /warnaserror
4 using System;
6 public class CS0652 {
8 public static void Main ()
10 short us = 0;
11 if (us == -10000000)
12 Console.WriteLine (":(");
13 else
14 Console.WriteLine (":)");