You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Concrete.java 174B

1234567891011
  1. package bug.package2;
  2. import package1.Abstract;
  3. public class Concrete extends Abstract<Object> {
  4. public void method() {
  5. field = null;
  6. }
  7. }