Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dtest-052.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7fa9e06374fb24cbcd0e1571bebc6655868acc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -r:dtest-052-lib.dll

// Importing of complex dynamic arguments

class A
{
	public void Method (DynamicReference d)
	{
		d.DynType.Value.AnyMethod ();
		d.DynArray.Value[0][0].AnyMethod ();
	}
	
	public static void Main ()
	{
	}
}