All Downloads are FREE. Search and download functionalities are using the official Maven repository.

qilin.pta.toolkits.zipper.cases.CaseA Maven / Gradle / Ivy

package qilin.pta.toolkits.zipper.cases;

// NO IN , NO OUT, CASE 4.
public class CaseA {
  static class A {
    Object f;
  }

  A create() {
    return new A();
  }

  void foo() {
    Object o = new Object();
    A a = create();
    a.f = o;
    o = a.f;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy