Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / dtest-052.cs
blob7fa9e06374fb24cbcd0e1571bebc6655868acc14
1 // Compiler options: -r:dtest-052-lib.dll
3 // Importing of complex dynamic arguments
5 class A
7 public void Method (DynamicReference d)
9 d.DynType.Value.AnyMethod ();
10 d.DynArray.Value[0][0].AnyMethod ();
13 public static void Main ()