With these new tests (73-79) we have completed the tests from CS0001 to
[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 }