package lectures.inheritance.extra;
import util.annotations.WebDocuments;

import lectures.inheritance.ABaseStringHistory;

@WebDocuments({"Lectures/InheritanceExtra.pptx", "Lectures/InheritanceExtra.pdf", "Videos/InheritanceExtra.avi"})
public class AnIndependentClassInAnotherPackage {
    int anotherUslessVariable = (new ABaseStringHistory()).uselessVariable;

}