24 lines
429 B
Plaintext
Vendored
24 lines
429 B
Plaintext
Vendored
/**
|
|
* @KaptMetadata
|
|
*/
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
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();
|
|
}
|
|
}
|