[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0183-2.cs
1 // CS0183: The given expression is always of the provided (`object') type
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
4
5 class X
6 {
7         public void Foo ()
8         {
9                 int x = 1;
10                 if (x is object) {
11                 }
12         }
13 }