summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1745.cs
blob: 46f8d0e75ee3d1d06fd1fca079938cab3ccd78bb (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1745: Cannot specify `System.Runtime.InteropServices.Optional' attribute on optional parameter `u'
// Line: 8

using System.Runtime.InteropServices;

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