From 130f1c0e99d5bdc4791a55e7123eae1fc72b7667 Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 12 Feb 1999 15:51:29 +0000 Subject: [PATCH] test for null getfield git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@278 379699f6-c40d-0410-875b-85095c16579e --- jode/test/LocalTypes.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jode/test/LocalTypes.java b/jode/test/LocalTypes.java index ba0631d..e614548 100644 --- a/jode/test/LocalTypes.java +++ b/jode/test/LocalTypes.java @@ -153,8 +153,7 @@ public class LocalTypes { System.err.println(((Object)this) instanceof RuntimeException); System.err.println(((RuntimeException)(Object)this).getMessage()); ((java.io.PrintStream)null).println("Hallo"); - ((LocalTypes) null).a = new A(); - ((LocalTypes) null).b = new B(); + ((LocalTypes) null).a = ((LocalTypes) null).b; } }