Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / dtest-052.cs
1 // Compiler options: -r:dtest-052-lib.dll
2
3 // Importing of complex dynamic arguments
4
5 class A
6 {
7         public void Method (DynamicReference d)
8         {
9                 d.DynType.Value.AnyMethod ();
10                 d.DynArray.Value[0][0].AnyMethod ();
11         }
12         
13         public static void Main ()
14         {
15         }
16 }