summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0030-12.cs
blob: c2d6b6f07e98ef384fa0c58732f630692bb01896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0030: Cannot convert type `X' to `S'
// Line: 10

struct S {
}

class X {
	static void Main ()
	{
		S s = (S)default(X);
	}
}