228445ff6b7f4758e0d1e4f890943f92b52ec121
[mono.git] / mcs / errors / cs0183.cs
1 // cs0183.cs: the expression is always of the type `x'
2 // Line:
3
4 class X {
5
6         static void Main ()
7         {
8                 int i;
9
10                 if (i is int){
11                 }
12         }
13 }