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

cs1745.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d3caf0b4dba96d4071a1844eca2603b8d271ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1745: Cannot specify `System.Runtime.InteropServices.Optional' attribute on optional parameter `u'
// Line: 8
// Compiler options: -langversion:future

using System.Runtime.InteropServices;

public class C
{
	public static void Test ([Optional] int u = 2)
	{
	}
}