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

cs0029-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 118d7818bd1a747506d4ef515a5a9a8c3dbbe5a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0029-2.cs: Cannot implicitly convert type `string' to `double'
// Line: 11

using System;

public sealed class BoundAttribute : System.Attribute
{
	public double D;
}

class C
{
	[Bound (D = "Dude!")]
	double d2;
}