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

cs1978.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acc781b5112d389e2d804883445dff0ee9237e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1978: An expression of type `__arglist' cannot be used as an argument of dynamic operation
// Line: 9

class C
{
	public static void Main ()
	{
		dynamic d = null;
		d (__arglist (111));
	}
}