JVM IR: do not generate InlineOnly property accessors in multifile facade
#KT-37007 Fixed
This commit is contained in:
+6
-2
@@ -1,5 +1,3 @@
|
||||
// !LANGUAGE: +UseGetterNameForPropertyAnnotationsMethodOnJvm
|
||||
// IGNORE_BACKEND: JVM_IR
|
||||
// WITH_RUNTIME
|
||||
|
||||
@file:[JvmName("Foo") JvmMultifileClass]
|
||||
@@ -16,3 +14,9 @@ fun foo() {
|
||||
inline var prop: String
|
||||
get() = "12"
|
||||
set(value) {}
|
||||
|
||||
inline var prop2: String
|
||||
get() = "12"
|
||||
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
||||
@kotlin.internal.InlineOnly
|
||||
set(value) {}
|
||||
|
||||
Reference in New Issue
Block a user