summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0266-21.cs
blob: d1bda2e31fbbd025b86fc7ff8c71fc50416ad18d (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);
	}
}