// cs0078.cs: 'l' is easily confused with digit '1'. // Line: 12 // Compiler options: -warnaserror -warn:4 using System; class ErrorCS0078 { public static void Main () { long a = 1l; } }