[Mono.Unix] Fix crasher in StringToHeap (#5639)
[mono.git] / mcs / errors / cs1745.cs
1 // CS1745: Cannot specify `System.Runtime.InteropServices.Optional' attribute on optional parameter `u'
2 // Line: 8
3
4 using System.Runtime.InteropServices;
5
6 public class C
7 {
8         public static void Test ([Optional] int u = 2)
9         {
10         }
11 }