2002-10-14 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / errors / cs0019-5.cs
1 class X {
2 }
3
4 class Y {
5 }
6
7 class T {
8         static void Main ()
9         {
10                 X x = new X ();
11                 Y y = new Y ();
12
13                 if (x == y){
14                 }
15         }
16 }