2005-01-26 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
[mono.git] / mcs / errors / cs0078.cs
1 // cs0078.cs: 'l' is easily confused with digit '1'.
2 // Line: 12
3 // Compiler options: -warnaserror -warn:4
4
5 using System;
6
7 class ErrorCS0078 {
8         public static void Main () {
9                 long a = 1l;
10         }
11 }
12