New test.
[mono.git] / mcs / errors / cs0023-6.cs
1 // CS0023: The `.' operator cannot be applied to operand of type `void'\r
2 // Line: 8\r
3 \r
4 class C\r
5 {\r
6         public static void Main ()\r
7         {\r
8                 string s = void.ToString ();\r
9         }\r
10 }