[mini] Always emit safepoints, except WASM
[mono-project.git] / mcs / errors / cs0037-6.cs
blob6e550a45cbf1c144612b0dd32b43eec47cd78c66
1 // CS0037: Cannot convert null to `bool' because it is a value type
2 // Line: 13
4 using System;
6 public sealed class BoundAttribute : System.Attribute
8 public bool Dec { set { } get { return false; } }
11 class C
13 [Bound (Dec = null)]
14 double d2;