Files
kotlin/jps-plugin/testData/incremental/withJava/other/inlineFunctionWithJvmNameInClass/inline.kt
Georgy Bronnikov 8e24256f95 JVM_IR: avoid descriptors when tracking inline properties
Preparing to use wrapped properties in InlineCodegen.
2020-07-02 12:46:58 +03:00

8 lines
90 B
Kotlin
Vendored

package inline
class A {
var z = 0
@JvmName("fff")
inline fun f(): Int = 0
}