2006-07-14 Jonathan Pobst <monkey@ipobst.com>
[mono.git] / mcs / errors / cs0023-3.cs
1 // cs0023-3.cs: The `.' operator can not be applied to operands 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