2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / tests / conv-exe.cs
1 // Compiler options: -r:conv-dll.dll
2
3 public class MainClass
4 {
5         public static int Main ()
6         {
7                 A a = new A ();
8                 B b = new B ();
9                 bool r = (a == b);
10
11                 return 0;
12         }
13 }