blob: b8e36ccd839f59ed21e1b141817a962c809e3636 [file] [log] [blame]
public class A {
private void a(){
b();
}
private void b(){
a();
}
}