2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0652-7.cs
blobec08b5f7815feea5c48408f52d3ea5f6cedfe261
1 // CS0652: A comparison between a constant and a variable is useless. The constant is out of the range of the variable type `char'
2 // Line: 12
3 // Compiler options: /warn:2 /warnaserror
5 using System;
7 public class CS0652 {
9 public static void Main ()
11 char value = 'a';
12 if (value > ulong.MaxValue)
13 return;