Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / 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 ();