javaclass

tests/ConcreteClassTest.java

158:a52e70c3f294
2005-01-23 Paul Boddie Added "safety measures" for exception offset insertion, although better measures are necessary to avoid bizarre JDK 1.4 exception tables.
     1 public class ConcreteClassTest extends AbstractClassTest {     2     public static void main(String[] args) {     3         ConcreteClassTest test = new ConcreteClassTest();     4         if (test.member != null && test.member instanceof ConcreteClassTest) {     5             System.out.println("test.member correct: " + test.member);     6         } else {     7             System.err.println("test.member failed!");     8         }     9     }    10 }    11     12 // vim: tabstop=4 expandtab shiftwidth=4