Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs0029-34.cs
blob6febb9a7cbced99f62dec9aef6f841a0f3822529
1 // CS0029: Cannot implicitly convert type `string' to `MyTypeImplicitOnly?'
2 // Line: 13
4 struct MyTypeImplicitOnly
8 class C
10 static void Main ()
12 MyTypeImplicitOnly? mt = null;
13 mt = null + mt;