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