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

import lectures.inheritance.ABaseStringHistory;

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

}