Files
kotlin/compiler/testData/readJavaBinaryClass/MethosWithPRefTP.kt
Stepan Koltsov e075bec4c0 JavaDescriptorResolver refactoring
* kill JavaDescriptorResolver.typeParameterDescriptorCache
* use ClassOrNamespaceDescriptor instead of DeclarationDescriptor

Code is a bit ugly now, but simpler than before.
2012-01-31 22:48:55 +04:00

6 lines
83 B
Kotlin

package test
final class MethosWithPRefTP() {
fun <erased P> f(p0: P) = #()
}