Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs1745-2.cs
blobad4e4822df6f93a147f2beed1aaa332a61b51774
1 // CS1745: Cannot specify `System.Runtime.InteropServices.DefaultParameterValue' attribute on optional parameter `u'
2 // Line: 8
3 // Compiler options: -langversion:future
5 using System.Runtime.InteropServices;
7 public class C
9 public static void Test ([DefaultParameterValue (1)] int u = 2)