2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0023-5.cs
blobbefe1415938398495e0a10ca7257dc08a5702c22
1 // CS0023: The `.' operator cannot be applied to operand of type `null'
2 // Line: 8
4 class C
6 public static void Main ()
8 string s = null.ToString ();