X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0019.cs;h=a909e680a7677e3c7b1d2a09aedfcc75cb043efd;hb=487fddd14660e9095c1abd1d461ea5303ce52b48;hp=1a48091f4b92c455eafc86faf9dde89e0b109748;hpb=881f83658281916d8f0784df7c726ecb7cc289db;p=mono.git diff --git a/mcs/errors/cs0019.cs b/mcs/errors/cs0019.cs index 1a48091f4b9..a909e680a76 100644 --- a/mcs/errors/cs0019.cs +++ b/mcs/errors/cs0019.cs @@ -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; - } }