1f1491f1ca
1. Support strictfp modifier for methods. 2. Support Kotlin top-level methods and properties. 3. Fix visibility modifiers on enum methods.
15 lines
274 B
Plaintext
Vendored
15 lines
274 B
Plaintext
Vendored
public final class GenericRawSignatures {
|
|
|
|
public final <T extends java.lang.Object>T genericFun() {
|
|
return null;
|
|
}
|
|
|
|
public final java.lang.String nonGenericFun() {
|
|
return null;
|
|
}
|
|
|
|
public GenericRawSignatures() {
|
|
super();
|
|
}
|
|
}
|