Updated project.
[mono.git] / mcs / errors / cs0652.cs
1 // cs0652.cs: Comparison to integral constant is useless; the constant is outside the range of type 'type'
2 // Line: 9
3
4 class X
5 {
6         void b ()
7         {
8                 byte b = 0;
9                 if (b == 500)
10                     return;
11         }
12 }