already had ported in z testing stuff, so dropping that side project.
[feisty_meow.git] / kona / z-testing / src / test / java / semantics / instance_of.java
diff --git a/kona/z-testing/src/test/java/semantics/instance_of.java b/kona/z-testing/src/test/java/semantics/instance_of.java
deleted file mode 100644 (file)
index 3900856..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-package test.java.semantics;
-
-import java.util.List;
-
-class instance_of
-{
-    public instance_of() {}
-    
-    public Object cogitate() {
-        return null;
-    }
-
-    public static void main(String s[]) throws Exception
-    {
-        // we are just asserting that it is safe to do instanceof on an object that is null.
-        // let's test that theory.
-        instance_of tony = new instance_of();
-        Object fred = tony.cogitate();  // will produce null.
-        if (fred instanceof List<?>) {
-            throw new Exception("that should not have happened!");
-        } else {
-            System.out.println("told us null is not an instance of List, which is correct.");
-        }
-        
-    }
-
-}
\ No newline at end of file