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