2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019.cs
blob1a48091f4b92c455eafc86faf9dde89e0b109748
1 // cs0019.cs: Operator `+' cannot be applied to operands of type `Foo' and `int'
2 // Line : 11
4 public class Foo {
6 public static void Main ()
9 Foo k = new Foo ();
11 int i = k + 6;