Merge pull request #5439 from alexrp/master
[mono.git] / mcs / tests / test-396.cs
1 // Compiler options: -r:test-396-lib.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 }