codeowners update
[mono.git] / mcs / errors / cs0029-36.cs
1 // CS0029: Cannot implicitly convert type `void' to `object'
2 // Line: 10
3
4 using System;
5
6 class TestClass
7 {
8         public static void Main ()
9         {
10                 Console.WriteLine ($"{ Main () }");             
11         }
12 }