[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0184-3.cs
1 // CS0184: The given expression is never of the provided (`decimal') type
2 // Line: 7
3 // Compiler options: -warnaserror -warn:1
4
5 class A
6 {
7         static void Main ()
8         { 
9                 System.Console.WriteLine (1 is decimal);
10         }
11 }