12 lines
185 B
C#
Raw Normal View History

// 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;
}
}