* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0183.cs
1 // cs0183.cs: The given expression is always of the provided (`int') type
2 // Line:
3 // Compiler options: -warnaserror -warn:1
4
5 class X {
6
7         static void Main ()
8         {
9                 int i = 5;
10
11                 if (i is int){
12                 }
13         }
14 }