2002-01-19 Miguel de Icaza <miguel@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;
9                 
10                 if (a is byte){
11                 }
12         }
13 }