ignores
[mcs.git] / errors / cs0023-5.cs
blobb513b4877d5fe86fd6757676153c3638a00c7ec8
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 ();