Files
kotlin-fork/idea/testData/fir/multiModule/basicWithAnnotatedJava/jvm/jvm.txt
T
Mikhail Glukhikh f31faafd72 Introduce initial version of FIR Java type enhancement
Java type enhancement is performed by a special scope kind
Java FIR dump was added for multiplatform tests to look at enhancements
Overrides, J2K mapping, special cases does not work yet

Related to KT-29937
2019-03-14 17:51:00 +03:00

11 lines
382 B
Plaintext
Vendored

FILE: jvm.kt
public final class User : R|Annotated| {
public constructor(): super<R|Annotated|>()
public final function test(): R|kotlin/Unit| {
val x: R|error: Not supported: FirImplicitTypeRefImpl| = R|/Annotated.foo|(String(123))
val y: R|error: Not supported: FirImplicitTypeRefImpl| = R|/Annotated.foo|(Null(null))
}
}