2006-03-05 Senganal T <tsenganal@novell.com>
[mono.git] / mcs / errors / cs0184.cs
old mode 100755 (executable)
new mode 100644 (file)
index 014b945..d7db791
@@ -1,11 +1,12 @@
-// cs0184.cs: The expression is never of the provided type
+// cs0184.cs: The given expression is never of the provided (`byte') type
 // Line:
+// Compiler options: -warnaserror -warn:1
 
 class X {
 
        static void Main ()
        {
-               int a;
+               int a = 1;
                
                if (a is byte){
                }