Review feedback + drop VS2013 support.
[mono.git] / mcs / errors / cs0019.cs
index 1a48091f4b92c455eafc86faf9dde89e0b109748..a909e680a7677e3c7b1d2a09aedfcc75cb043efd 100644 (file)
@@ -1,14 +1,11 @@
-// cs0019.cs: Operator `+' cannot be applied to operands of type `Foo' and `int'
-// Line : 11
-
-public class Foo {
+// CS0019: Operator `+' cannot be applied to operands of type `Foo' and `int'
+// Line : 9
 
+public class Foo
+{
        public static void Main ()
        {
-               
                Foo k = new Foo ();
-
                int i = k + 6;
-               
        }
 }