I am using [Recaf](https://github.com/Col-E/Recaf) on the `dev-4` branch. I compiled the following java code: ```java public class L { public static void test() { L[] cfr_ignored_0 = new L[0]; } public L tryCast(Object o) { L l = (L)o; return l; } } ``` Which is decompiled with v0.6.0 into: ```java public class long { } ```