blob: aac49bc9b401344ec157c7d1d13cb1596d6503fb [file] [log] [blame]
final class A {
int m;
int k;
A() {
k=0;
m=0;
}
A(int n) {
this();
k=n;
}
}