2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0037-6.cs
blob4563ed13adf267a19d31c70a8238f1225ecb52f8
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;