Merge pull request #900 from Blewzman/FixAggregateExceptionGetBaseException
[mono.git] / mcs / errors / cs0019-71.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `External' and `int'
2 // Line: 11
3 // Compiler options: -r:CS0019-71-lib.dll
4
5 class X
6 {
7         public static void Main ()
8         {
9                 var t1 = new External ();
10                 int t2 = 0;
11                 bool b = t1 == t2;
12         }
13 }