Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / tests / test-921.cs
1 // Compiler options: -r:test-921-lib.dll
2
3 using Reference;
4
5 class A
6 {
7         void Foo (IA a)
8         {
9                 IB b = a.Equals;
10         }
11
12         public static void Main ()
13         {
14         }
15 }