f810d435f4
^KTIJ-25172 this information would be used to create resolved FirElements from stubs, so no ProtoBuf would be kept in memory
13 lines
263 B
Java
Vendored
13 lines
263 B
Java
Vendored
package d;
|
|
|
|
import org.jetbrains.annotations.*;
|
|
import kotlin.annotations.jvm.*;
|
|
|
|
public abstract class JavaClass<T> {
|
|
public class InnerClass<M> {}
|
|
|
|
@Mutable
|
|
public static <K, L> JavaClass<K>.InnerClass<L> baz(K k, L l) {
|
|
return null;
|
|
}
|
|
} |