# HG changeset patch # User Paul Boddie # Date 1100476468 -3600 # Node ID 7fcd2c0918c72261224a2ce6ef9ac1c84ce28c72 # Parent 4d42b375a7701281c9679911c7264bf8083cddf2 Added a test of class loading and superclass presence. diff -r 4d42b375a770 -r 7fcd2c0918c7 tests/ValueSubclass.java --- a/tests/ValueSubclass.java Sun Nov 14 22:47:39 2004 +0100 +++ b/tests/ValueSubclass.java Mon Nov 15 00:54:28 2004 +0100 @@ -30,3 +30,12 @@ this.value = v.getValue(); } } + +// This should confuse the importer since it should be read before Value in +// alphabetical order. + +class SubclassValue extends Value { + public SubclassValue(int x) { + super(x); + } +}