* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[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 = 5;
9
10                 if (i is int){
11                 }
12         }
13 }