2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0023-3.cs
blob800029d30ca241217273aa302e94e8ca4b673175
1 // CS0023: The `.' operator cannot be applied to operand of type `void'
2 // Line: 12
4 using System;
6 public class Testing
7 {
8 public static void DoNothing() {}
10 public static void Main()
12 Console.WriteLine(DoNothing().ToString());