summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-36.cs
blob: 781bf1b1f1e648b2903ea4e02c2fb08ec6f17e88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0029: Cannot implicitly convert type `void' to `object'
// Line: 10

using System;

class TestClass
{
	public static void Main ()
	{
		Console.WriteLine ($"{ Main () }");		
	}
}