Example
public class
ClassA
{
long l = 12345l;
}
Solution
To avoid the confusion between character 'l' and number '1', Replace the chracter 'l' at the end of the number literal with the character 'L'.
public class
ClassA
{
long l = 12345L;
}