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