Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0037-6.cs
blobbc5e3679fa8c55ae2b0b33385dff97d4e6d9cdc0
1 // cs0037.cs: 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;