Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0037-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4563ed13adf267a19d31c70a8238f1225ecb52f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0037.cs: Cannot convert null to `bool' because it is a value type
// Line: 13

using System;

public sealed class BoundAttribute : System.Attribute
{
	public bool Dec { set { } get { return false; } }
}

class C
{
	[Bound (Dec = null)]
	double d2;
}