17 lines
358 B
Plaintext
Vendored
17 lines
358 B
Plaintext
Vendored
public final class GenericRawSignatures {
|
|
|
|
@org.jetbrains.annotations.Nullable()
|
|
public final <T extends java.lang.Object>T genericFun() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.Nullable()
|
|
public final java.lang.String nonGenericFun() {
|
|
return null;
|
|
}
|
|
|
|
public GenericRawSignatures() {
|
|
super();
|
|
}
|
|
}
|