# HG changeset patch # User Thomas Wuerthinger # Date 1376608354 -7200 # Node ID b7bfa23530568c76692707752a0457f1a8f0c6da # Parent f0c8303cf88e8532fb6f10d9fb32702f93121faa Remove test file. diff -r f0c8303cf88e -r b7bfa2353056 Test.java --- a/Test.java Fri Aug 16 01:09:03 2013 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -public class Test { - public static void main(String[] args) { - Test t = new Test(); - Test2 t2 = new Test2(); - for (int i = 0; i < 5000; ++i) { - test2(t2); - } - for (int i = 0; i < 100000; ++i) { - test(t); - } - } - - public static int test(Object t) { - if (t instanceof Test) { - test2(t); - } - return 3; - } - - public static int test2(Object t) { - if (t instanceof Test) { - return 1; - } - return 2; - } -} - - -class Test2 extends Test { -}