In ilasm/tests:
[mcs.git] / errors / cs0652.cs
blob8d42558e52b9255e987c343c479e50db952c814e
1 // cs0652.cs: Comparison to integral constant is useless; the constant is outside the range of type `byte'
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 class X
7 void b ()
9 byte b = 0;
10 if (b == 500)
11 return;
14 static void Main () {}