fix run-test
[mcs.git] / errors / cs0652-6.cs
blobe927176091501d90c774ba73b07e4a02729255d4
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: 12
3 // Compiler options: /warn:2 /warnaserror
5 using System;
7 public class CS0652 {
9 public static void Main ()
11 short value = 5;
12 if (value > char.MaxValue)
13 return;