[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0023-3.cs
1 // CS0023: The `.' operator cannot be applied to operand of type `void'
2 // Line: 12
3
4 using System; 
5  
6 public class Testing 
7
8         public static void DoNothing() {} 
9          
10         public static void Main() 
11         { 
12                 Console.WriteLine(DoNothing().ToString()); 
13         } 
14