2003-04-08 Gaurav Vaish <gvaish_mono AT lycos.com>
[mono.git] / mcs / errors / cs0078.cs
1 // cs0078.cs: Compiler Warning level 4. 'l' is easily confused with digit '1'.
2 // Line: 12
3
4 using System;
5
6 class ErrorCS0078 {
7         public static void Main () {
8                 long a = 1l;
9         }
10 }
11