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 } }
Standard input is empty
prog.cs(9,7): error CS0029: Cannot implicitly convert type `int' to `string' Compilation failed: 1 error(s), 0 warnings
Standard output is empty