Switch to compiler-tester
[mono.git] / mcs / errors / cs0019.cs
1 // cs0019.cs: Operator `+' cannot be applied to operands of type `Foo' and `int'
2 // Line : 11
3
4 public class Foo {
5
6         public static void Main ()
7         {
8                 
9                 Foo k = new Foo ();
10
11                 int i = k + 6;
12                 
13         }
14 }