Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/src/pkg/TestInnerSignature.java

37 lines
536 B

package pkg;
public class TestInnerSignature<A,B,C> {
A a;
B b;
C c;
public TestInnerSignature(A a, @Deprecated B b,C c) {
this.a = a;
this.b = b;
this.c = c;
}
public class Inner {
A a;
B b;
C c;
public Inner(A a, @Deprecated B b, C c) {
this.a = a;
this.b = b;
this.c = c;
}
}
public static class InnerStatic<A,B,C> {
A a;
B b;
C c;
public InnerStatic(A a, @Deprecated B b, C c) {
this.a = a;
this.b = b;
this.c = c;
}
}
}