// cs0019.cs: Operator `+' cannot be applied to operands of type `Foo' and `int' // Line : 11 public class Foo { public static void Main () { Foo k = new Foo (); int i = k + 6; } }