Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0184-7.cs
1 // CS0184: The given expression is never of the provided (`object') type
2 // Line: 13
3 // Compiler options: -warnaserror -warn:1
4
5 public class Test
6 {
7         static void Foo ()
8         {
9         }
10         
11         public static void Main()
12         {
13                 bool b = Foo () is object;
14         }
15 }