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

gcs0266.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d09ff665108c44d366c9a1ce700648a40ef09fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0266: Cannot implicitly convert type `I' to `C'. An explicit conversion exists (are you missing a cast?)
// Line: 16

interface I
{
}

struct C : I
{
}

class X
{
	static void Main (string[] args)
	{
		C c = default (I);
	}
}