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

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

using System.Runtime.InteropServices;

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