Files
Anna Kozlova f810d435f4 [cls] write flexible type information to cls
^KTIJ-25172
this information would be used to create resolved FirElements from stubs,
so no ProtoBuf would be kept in memory
2023-04-14 18:12:48 +00:00

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;
}
}