Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0019-17.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `int' and `string'
2 // Line: 8
3
4 class S
5 {
6         static int i;
7         
8         static bool Foo ()
9         {
10                 return i == "";
11         }
12 }