<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%!
public void jspInit() {
}
class First {
public void meth() {}
}
class Second extends First {
public void meth() {}
}
%>
<html>
<head><title>Simple jsp page</title></head>
<body>Place your content here</body>
</html>