2004-04-22 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0184.cs
1 // cs0184.cs: The expression is never of the provided type
2 // Line:
3
4 class X {
5
6         static void Main ()
7         {
8                 int a = 1;
9                 
10                 if (a is byte){
11                 }
12         }
13 }