* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / cs1720.cs
blob7a24ada4e12b51c5ef624a58c3800f3697350991
1 // CS1720: Expression will always cause a `System.NullReferenceException'
2 // Line: 11
3 // Compiler options: -warnaserror -warn:1
5 using System;
7 public class Tester
9 public static void Main()
11 Console.WriteLine(((object)null).ToString());