classfile-rs icon indicating copy to clipboard operation
classfile-rs copied to clipboard

Does not work

Open dishmaker opened this issue 1 year ago • 0 comments

public class TestClass {
	public static void main(String[] args) {
		try {
			System.out.println("Hello,");
			if("a".equals("b")) {
				return;
			}

			System.out.println("World!");
		}catch(Exception e) {
			System.out.println("Exception");
		}
		
	}
}
Error: analyze_file "TestClass.class"

Caused by:
    Unknown Instruction 4C

dishmaker avatar Feb 12 '24 09:02 dishmaker