Restructure bytecode listing tests on InlineOnly/inline+reified

This commit is contained in:
Alexander Udalov
2019-04-11 17:08:43 +03:00
parent 1c6ce208a6
commit b42adcd73d
17 changed files with 122 additions and 56 deletions
@@ -0,0 +1,28 @@
// WITH_RUNTIME
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.InlineOnly
inline var prop: String
get() = "12"
set(value) {}
inline var prop2: String
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.InlineOnly
get() = "12"
set(value) {}
class Foo {
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.InlineOnly
inline var prop: String
get() = "12"
set(value) {}
inline var prop2: String
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@kotlin.internal.InlineOnly
get() = "12"
set(value) {}
}