Package se.arnetheduck.j2c.test.generics

Source Code of se.arnetheduck.j2c.test.generics.Fields$B

package se.arnetheduck.j2c.test.generics;

import se.arnetheduck.j2c.test.Empty;

public class Fields {
  public static class A<T> {
    T t;
  }

  public static class B extends A<Empty> {
    Empty m() {
      t = new Empty();
      return t;
    }

    Empty n() {
      this.t = new Empty();
      return this.t;
    }
  }

  Empty m(A<Empty> a) {
    Empty x = a.t;
    return a.t;
  }
}
TOP

Related Classes of se.arnetheduck.j2c.test.generics.Fields$B

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.