using System; public class Test { public static void Main() { var x = "hello"; x = "world"; x = 42; // compilation fails here... see the error message for details } }