summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-34.cs
blob: 6febb9a7cbced99f62dec9aef6f841a0f3822529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0029: Cannot implicitly convert type `string' to `MyTypeImplicitOnly?'
// Line: 13

struct MyTypeImplicitOnly
{
}

class C
{
	static void Main ()
	{
		MyTypeImplicitOnly? mt = null;
		mt = null + mt;
	}
}