alright , heres the code :
public class MyClass {
long var;
public void MyClass(long param)
{
var=param; //st1
}
public static void main(string args[])
{
MyClass a,b;
a=new MyClass(); //st2
b=new MyClass(5); //st3
}
}
why error occurs at st3 instead of line st2 ?