Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0029-34.cs
1 // CS0029: Cannot implicitly convert type `string' to `MyTypeImplicitOnly?'
2 // Line: 13
3
4 struct MyTypeImplicitOnly
5 {
6 }
7
8 class C
9 {
10         static void Main ()
11         {
12                 MyTypeImplicitOnly? mt = null;
13                 mt = null + mt;
14         }
15 }