Files
kotlin-fork/jps-plugin/testData/incremental/withJava/other/inlineFunctionWithJvmNameInClass/inline.kt.new.1
T
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
Groff
Vendored

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