IDEA-149077 Default decompiler is chosen for several classes instead of Fernflower - tests

This commit is contained in:
Egor.Ushakov
2017-05-10 17:02:31 +03:00
parent 1f0d42ba0d
commit adbf29f8ce
68 changed files with 20713 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
public class y<P> {
private P a;
private Class<P> b;
private boolean c;
public static int d;
private y(Class<P> var1) {
this.b = var1;
}
public static <P> y<P> a(Class<P> var0) {
return new y(var0);
}
public P a() {
// $FF: Couldn't be decompiled
}
}