[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1745-2.cs
blob1a700aee93e40719b5a0e11555f9a562927dc445
1 // CS1745: Cannot specify `System.Runtime.InteropServices.DefaultParameterValue' attribute on optional parameter `u'
2 // Line: 8
4 using System.Runtime.InteropServices;
6 public class C
8 public static void Test ([DefaultParameterValue (1)] int u = 2)